Skip to content

Commit 620c247

Browse files
authored
Remove duplicate log and bump to beta.15 (#33)
* Remove duplicate vm error log * Bump to beta.15 * Fix unused import
1 parent f9f8b23 commit 620c247

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [v1.0.0-beta.15]
10+
11+
- Reduce noisy logs
12+
913
## [v1.0.0-beta.14]
1014

1115
- Limit the number of bytes read by NR RPC middleware

core/state_transition.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import (
2626
"github.com/ethereum/go-ethereum/core/types"
2727
"github.com/ethereum/go-ethereum/core/vm"
2828
"github.com/ethereum/go-ethereum/crypto/kzg4844"
29-
"github.com/ethereum/go-ethereum/log"
3029
"github.com/ethereum/go-ethereum/params"
3130
"github.com/holiman/uint256"
3231
)
@@ -459,10 +458,6 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
459458
fee.Mul(fee, effectiveTipU256)
460459
st.state.AddBalance(st.evm.Context.Coinbase, fee)
461460
}
462-
// CHANGE(immutable) add error logging
463-
if vmerr != nil {
464-
log.Warn("vm execution error", "err", vmerr)
465-
}
466461
return &ExecutionResult{
467462
UsedGas: st.gasUsed(),
468463
RefundedGas: gasRefund,

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const (
2424
VersionMajor = 1 // Major version component of the current release
2525
VersionMinor = 0 // Minor version component of the current release
2626
VersionPatch = 0 // Patch version component of the current release
27-
VersionMeta = "beta.14" // Version metadata to append to the version string
27+
VersionMeta = "beta.15" // Version metadata to append to the version string
2828
)
2929

3030
// Version holds the textual version string.

0 commit comments

Comments
 (0)