diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a74c3c9..fa2f1c5a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v1.0.0-beta.15] + +- Reduce noisy logs + ## [v1.0.0-beta.14] - Limit the number of bytes read by NR RPC middleware diff --git a/core/state_transition.go b/core/state_transition.go index b1005c22d..5759506a3 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -26,7 +26,6 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/crypto/kzg4844" - "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/params" "github.com/holiman/uint256" ) @@ -459,10 +458,6 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) { fee.Mul(fee, effectiveTipU256) st.state.AddBalance(st.evm.Context.Coinbase, fee) } - // CHANGE(immutable) add error logging - if vmerr != nil { - log.Warn("vm execution error", "err", vmerr) - } return &ExecutionResult{ UsedGas: st.gasUsed(), RefundedGas: gasRefund, diff --git a/params/version.go b/params/version.go index 5f2ea5328..f186881a3 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ const ( VersionMajor = 1 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release VersionPatch = 0 // Patch version component of the current release - VersionMeta = "beta.14" // Version metadata to append to the version string + VersionMeta = "beta.15" // Version metadata to append to the version string ) // Version holds the textual version string.