mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 14:16:44 +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 (
|
||||
VersionMajor = 4 // Major 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
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -87,8 +87,8 @@ func (ccc *CircuitCapacityChecker) ApplyTransaction(traces *types.BlockTrace) (*
|
|||
if result.TxRowUsage == nil || result.AccRowUsage == nil {
|
||||
log.Error("fail to apply_tx in CircuitCapacityChecker",
|
||||
"id", ccc.ID, "TxHash", traces.Transactions[0].TxHash,
|
||||
"len(result.TxRowUsage)", len(result.TxRowUsage),
|
||||
"len(result.AccRowUsage)", len(result.AccRowUsage),
|
||||
"result.TxRowUsage==nil", result.TxRowUsage == nil,
|
||||
"result.AccRowUsage == nil", result.AccRowUsage == nil,
|
||||
"err", "TxRowUsage or AccRowUsage is empty unexpectedly")
|
||||
return nil, ErrUnknown
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue