Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bridge/sender/sender.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func NewSender(ctx context.Context, config *config.SenderConfig, privs []*ecdsa.
auths: auths,
confirmCh: make(chan *Confirmation, 128),
blockNumber: header.Number.Uint64(),
baseFeePerGas: header.BaseFee.Uint64(),
baseFeePerGas: 0, // the l2geth would not return "baseFeePerGas", set it to zero.
pendingTxs: sync.Map{},
stopCh: make(chan struct{}),
}
Expand Down
2 changes: 1 addition & 1 deletion common/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime/debug"
)

var tag = "prealpha-v11.17"
var tag = "prealpha-v11.18"

var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
Expand Down