Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
0870c633
Unverified
Commit
0870c633
authored
Jan 18, 2025
by
piguagua
Committed by
GitHub
Jan 18, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix problematic function name in comment (#13781)
Signed-off-by:
piguagua
<
piguagua@aliyun.com
>
parent
17f516ff
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
kurtosis.go
kurtosis-devnet/pkg/kurtosis/kurtosis.go
+1
-1
deploy.go
op-chain-ops/interopgen/deploy.go
+1
-1
active_l2_provider_test.go
op-service/dial/active_l2_provider_test.go
+1
-1
ssz_test.go
op-service/eth/ssz_test.go
+1
-1
No files found.
kurtosis-devnet/pkg/kurtosis/kurtosis.go
View file @
0870c633
...
...
@@ -142,7 +142,7 @@ func (d *KurtosisDeployer) getWallets(wallets deployer.WalletList) descriptors.W
return
walletMap
}
//
g
etEnvironmentInfo parses the input spec and inspect output to create KurtosisEnvironment
//
G
etEnvironmentInfo parses the input spec and inspect output to create KurtosisEnvironment
func
(
d
*
KurtosisDeployer
)
GetEnvironmentInfo
(
ctx
context
.
Context
,
spec
*
spec
.
EnclaveSpec
)
(
*
KurtosisEnvironment
,
error
)
{
inspectResult
,
err
:=
d
.
enclaveInspecter
.
EnclaveInspect
(
ctx
,
d
.
enclave
)
if
err
!=
nil
{
...
...
op-chain-ops/interopgen/deploy.go
View file @
0870c633
...
...
@@ -134,7 +134,7 @@ func CreateL2(logger log.Logger, fa *foundry.ArtifactsFS, srcFS *foundry.SourceM
return
l2Host
}
//
p
repareInitialL1 deploys basics such as preinstalls to L1 (incl. EIP-4788)
//
P
repareInitialL1 deploys basics such as preinstalls to L1 (incl. EIP-4788)
func
PrepareInitialL1
(
l1Host
*
script
.
Host
,
cfg
*
L1Config
)
(
*
L1Deployment
,
error
)
{
l1Host
.
SetTxOrigin
(
sysGenesisDeployer
)
...
...
op-service/dial/active_l2_provider_test.go
View file @
0870c633
...
...
@@ -42,7 +42,7 @@ func setupEndpointProviderTest(t *testing.T, numSequencers int) *endpointProvide
return
ept
}
// newActiveL2
Endpoint
Provider constructs a new ActiveL2RollupProvider using the test harness setup.
// newActiveL2
Rollup
Provider constructs a new ActiveL2RollupProvider using the test harness setup.
func
(
et
*
endpointProviderTest
)
newActiveL2RollupProvider
(
checkDuration
time
.
Duration
)
(
*
ActiveL2RollupProvider
,
error
)
{
mockRollupDialer
:=
func
(
ctx
context
.
Context
,
log
log
.
Logger
,
url
string
)
(
RollupClientInterface
,
error
)
{
for
i
,
client
:=
range
et
.
rollupClients
{
...
...
op-service/eth/ssz_test.go
View file @
0870c633
...
...
@@ -49,7 +49,7 @@ func TestExecutionPayloadUnmarshalMaliciousData(t *testing.T) {
require
.
Error
(
t
,
err
)
}
// FuzzExecutionPayloadMarshalUnmarshal checks that our SSZ encoding>decoding round trips properly
// FuzzExecutionPayloadMarshalUnmarshal
V1
checks that our SSZ encoding>decoding round trips properly
func
FuzzExecutionPayloadMarshalUnmarshalV1
(
f
*
testing
.
F
)
{
f
.
Fuzz
(
func
(
t
*
testing
.
T
,
data
[]
byte
,
a
,
b
,
c
,
d
uint64
,
extraData
[]
byte
,
txs
uint16
,
txsData
[]
byte
)
{
if
len
(
data
)
<
32
+
20
+
32
+
32
+
256
+
32
+
32
+
32
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment