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
adf9b084
Unverified
Commit
adf9b084
authored
Jun 13, 2024
by
Khanh Hoa
Committed by
GitHub
Jun 13, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor: correct comment naming (#10816)
parent
25ab2327
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
channel_builder.go
op-batcher/batcher/channel_builder.go
+1
-1
tx_data.go
op-batcher/batcher/tx_data.go
+1
-1
clients.go
op-chain-ops/clients/clients.go
+1
-1
artifact.go
op-chain-ops/foundry/artifact.go
+1
-1
No files found.
op-batcher/batcher/channel_builder.go
View file @
adf9b084
...
@@ -82,7 +82,7 @@ type ChannelBuilder struct {
...
@@ -82,7 +82,7 @@ type ChannelBuilder struct {
outputBytes
int
outputBytes
int
}
}
//
n
ewChannelBuilder creates a new channel builder or returns an error if the
//
N
ewChannelBuilder creates a new channel builder or returns an error if the
// channel out could not be created.
// channel out could not be created.
// it acts as a factory for either a span or singular channel out
// it acts as a factory for either a span or singular channel out
func
NewChannelBuilder
(
cfg
ChannelConfig
,
rollupCfg
rollup
.
Config
,
latestL1OriginBlockNum
uint64
)
(
*
ChannelBuilder
,
error
)
{
func
NewChannelBuilder
(
cfg
ChannelConfig
,
rollupCfg
rollup
.
Config
,
latestL1OriginBlockNum
uint64
)
(
*
ChannelBuilder
,
error
)
{
...
...
op-batcher/batcher/tx_data.go
View file @
adf9b084
...
@@ -62,7 +62,7 @@ func (td *txData) Len() (l int) {
...
@@ -62,7 +62,7 @@ func (td *txData) Len() (l int) {
return
l
return
l
}
}
// Frame returns the single frame of this tx data.
// Frame
s
returns the single frame of this tx data.
func
(
td
*
txData
)
Frames
()
[]
frameData
{
func
(
td
*
txData
)
Frames
()
[]
frameData
{
return
td
.
frames
return
td
.
frames
}
}
...
...
op-chain-ops/clients/clients.go
View file @
adf9b084
...
@@ -10,7 +10,7 @@ import (
...
@@ -10,7 +10,7 @@ import (
"github.com/urfave/cli/v2"
"github.com/urfave/cli/v2"
)
)
//
c
lients represents a set of initialized RPC clients
//
C
lients represents a set of initialized RPC clients
type
Clients
struct
{
type
Clients
struct
{
L1Client
*
ethclient
.
Client
L1Client
*
ethclient
.
Client
L2Client
*
ethclient
.
Client
L2Client
*
ethclient
.
Client
...
...
op-chain-ops/foundry/artifact.go
View file @
adf9b084
...
@@ -66,7 +66,7 @@ type DeployedBytecode struct {
...
@@ -66,7 +66,7 @@ type DeployedBytecode struct {
ImmutableReferences
json
.
RawMessage
`json:"immutableReferences,omitempty"`
ImmutableReferences
json
.
RawMessage
`json:"immutableReferences,omitempty"`
}
}
//
Deployed
Bytecode represents the bytecode section of the solc compiler output.
// Bytecode represents the bytecode section of the solc compiler output.
type
Bytecode
struct
{
type
Bytecode
struct
{
SourceMap
string
`json:"sourceMap"`
SourceMap
string
`json:"sourceMap"`
Object
hexutil
.
Bytes
`json:"object"`
Object
hexutil
.
Bytes
`json:"object"`
...
...
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