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
00b799bc
Unverified
Commit
00b799bc
authored
Mar 21, 2023
by
mergify[bot]
Committed by
GitHub
Mar 21, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5212 from modagi/bugfix/max-stateroot-elements
fix: fix flag name typo for MaxStateRootElements
parents
00232b8c
f1ac90dd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
sharp-islands-attend.md
.changeset/sharp-islands-attend.md
+6
-0
config.go
batch-submitter/config.go
+1
-1
driver.go
batch-submitter/drivers/proposer/driver.go
+1
-1
No files found.
.changeset/sharp-islands-attend.md
0 → 100644
View file @
00b799bc
---
'
@eth-optimism/batch-submitter-service'
:
patch
---
fix flag name for MaxStateRootElements in batch-submitter
fix log package for proposer
batch-submitter/config.go
View file @
00b799bc
...
...
@@ -209,7 +209,7 @@ func NewConfig(ctx *cli.Context) (Config, error) {
MaxL1TxSize
:
ctx
.
GlobalUint64
(
flags
.
MaxL1TxSizeFlag
.
Name
),
MaxPlaintextBatchSize
:
ctx
.
GlobalUint64
(
flags
.
MaxPlaintextBatchSizeFlag
.
Name
),
MinStateRootElements
:
ctx
.
GlobalUint64
(
flags
.
MinStateRootElementsFlag
.
Name
),
MaxStateRootElements
:
ctx
.
GlobalUint64
(
flags
.
M
in
StateRootElementsFlag
.
Name
),
MaxStateRootElements
:
ctx
.
GlobalUint64
(
flags
.
M
ax
StateRootElementsFlag
.
Name
),
MaxBatchSubmissionTime
:
ctx
.
GlobalDuration
(
flags
.
MaxBatchSubmissionTimeFlag
.
Name
),
PollInterval
:
ctx
.
GlobalDuration
(
flags
.
PollIntervalFlag
.
Name
),
NumConfirmations
:
ctx
.
GlobalUint64
(
flags
.
NumConfirmationsFlag
.
Name
),
...
...
batch-submitter/drivers/proposer/driver.go
View file @
00b799bc
...
...
@@ -13,13 +13,13 @@ import (
"github.com/ethereum-optimism/optimism/bss-core/metrics"
"github.com/ethereum-optimism/optimism/bss-core/txmgr"
l2ethclient
"github.com/ethereum-optimism/optimism/l2geth/ethclient"
"github.com/ethereum-optimism/optimism/l2geth/log"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/log"
)
// stateRootSize is the size in bytes of a state root.
...
...
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