mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 22:26:42 +00:00
fix(rollup): fix error message and compile error (#416)
fix(rollup): fix compile error
This commit is contained in:
parent
2f9edf73ca
commit
22fec5714e
2 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ import (
|
||||||
const (
|
const (
|
||||||
VersionMajor = 4 // Major version component of the current release
|
VersionMajor = 4 // Major version component of the current release
|
||||||
VersionMinor = 3 // Minor version component of the current release
|
VersionMinor = 3 // Minor version component of the current release
|
||||||
VersionPatch = 1 // Patch version component of the current release
|
VersionPatch = 2 // Patch version component of the current release
|
||||||
VersionMeta = "sepolia" // Version metadata to append to the version string
|
VersionMeta = "sepolia" // Version metadata to append to the version string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -87,8 +87,8 @@ func (ccc *CircuitCapacityChecker) ApplyTransaction(traces *types.BlockTrace) (*
|
||||||
if result.TxRowUsage == nil || result.AccRowUsage == nil {
|
if result.TxRowUsage == nil || result.AccRowUsage == nil {
|
||||||
log.Error("fail to apply_tx in CircuitCapacityChecker",
|
log.Error("fail to apply_tx in CircuitCapacityChecker",
|
||||||
"id", ccc.ID, "TxHash", traces.Transactions[0].TxHash,
|
"id", ccc.ID, "TxHash", traces.Transactions[0].TxHash,
|
||||||
"len(result.TxRowUsage)", len(result.TxRowUsage),
|
"result.TxRowUsage==nil", result.TxRowUsage == nil,
|
||||||
"len(result.AccRowUsage)", len(result.AccRowUsage),
|
"result.AccRowUsage == nil", result.AccRowUsage == nil,
|
||||||
"err", "TxRowUsage or AccRowUsage is empty unexpectedly")
|
"err", "TxRowUsage or AccRowUsage is empty unexpectedly")
|
||||||
return nil, ErrUnknown
|
return nil, ErrUnknown
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue