mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
parent
96d12015e1
commit
dbdc463006
2 changed files with 7 additions and 7 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 = 5 // Patch version component of the current release
|
||||
VersionPatch = 6 // Patch version component of the current release
|
||||
VersionMeta = "sepolia" // Version metadata to append to the version string
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -79,10 +79,10 @@ pub mod checker {
|
|||
)
|
||||
})
|
||||
.estimate_circuit_capacity(&[traces.clone()])
|
||||
.unwrap_or_else(|_| {
|
||||
.unwrap_or_else(|e| {
|
||||
panic!(
|
||||
"id: {:?}, fail to estimate_circuit_capacity in apply_tx, block_hash: {:?}, tx_hash: {:?}",
|
||||
id, traces.header.hash, traces.transactions[0].tx_hash
|
||||
"id: {:?}, fail to estimate_circuit_capacity in apply_tx, block_hash: {:?}, tx_hash: {:?}, error: {:?}",
|
||||
id, traces.header.hash, traces.transactions[0].tx_hash, e
|
||||
)
|
||||
})
|
||||
});
|
||||
|
|
@ -126,10 +126,10 @@ pub mod checker {
|
|||
)
|
||||
})
|
||||
.estimate_circuit_capacity(&[traces.clone()])
|
||||
.unwrap_or_else(|_| {
|
||||
.unwrap_or_else(|e| {
|
||||
panic!(
|
||||
"id: {:?}, fail to estimate_circuit_capacity in apply_block, block_hash: {:?}",
|
||||
id, traces.header.hash
|
||||
"id: {:?}, fail to estimate_circuit_capacity in apply_block, block_hash: {:?}, error: {:?}",
|
||||
id, traces.header.hash, e
|
||||
)
|
||||
})
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue