Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/main' into main-js-trace…
Browse files Browse the repository at this point in the history
…rs-enabled
  • Loading branch information
mboben committed Nov 29, 2024
2 parents 8aa48f0 + 10b503d commit 2939a0f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

go-flare is a modified version of [[email protected]](https://github.com/ava-labs/avalanchego/releases/tag/v1.9.0) and [[email protected]](https://github.com/ava-labs/coreth/releases/tag/v0.11.0), incorporating specific features for Flare and Songbird networks. These features include prioritized contract handling and the invocation of the daemon contract.

All nodes should upgrade to the version 1.9.0 **before the following dates**:
All nodes should upgrade to the version 1.9.1 **before the following dates**:
- Coston2 network: November 26, 2024 at 12:00:00 UTC
- Flare network: December 17, 2024 at 12:00:00 UTC
- Coston network: January 7, 2025 at 12:00:00 UTC
Expand Down
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 @@ -1733,9 +1733,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 2939a0f

Please sign in to comment.