Skip to content

Commit

Permalink
Merge pull request #43 from flare-foundation/version_1.9.1
Browse files Browse the repository at this point in the history
Version 1.9.1
  • Loading branch information
mboben authored Nov 29, 2024
2 parents 6cddc4e + 319b846 commit a2c0a47
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions avalanchego/version/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var (
Current = &Semantic{
Major: 1,
Minor: 9,
Patch: 0,
Patch: 1,
}
CurrentApp = &Application{
Major: Current.Major,
Expand All @@ -35,7 +35,7 @@ var (
CurrentSgb = &Semantic{
Major: 0,
Minor: 7,
Patch: 0,
Patch: 1,
}
CurrentSgbApp = &Application{
Major: CurrentSgb.Major,
Expand All @@ -44,8 +44,8 @@ var (
}
MinimumCompatibleSgbVersion = &Application{
Major: 0,
Minor: 6,
Patch: 6,
Minor: 7,
Patch: 0,
}
PrevMinimumCompatibleSgbVersion = &Application{
Major: 0,
Expand Down
6 changes: 3 additions & 3 deletions coreth/plugin/evm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -1732,9 +1732,9 @@ func (vm *VM) readLastAccepted() (common.Hash, uint64, error) {
}

// To implement secp256k1fx.VM interface.
// Verification of export transaction inputs is done in coreth/plugin/evm/export_tx.go,
// so we always return false here.
func (vm *VM) EthVerificationEnabled() bool { return false }
func (vm *VM) EthVerificationEnabled() bool {
return vm.currentRules().IsBanff
}

// attachEthService registers the backend RPC services provided by Ethereum
// to the provided handler under their assigned namespaces.
Expand Down

0 comments on commit a2c0a47

Please sign in to comment.