Skip to content

Commit 6cddc4e

Browse files
authored
Merge pull request #42 from mboben/main
Updated README.md and fixed localflare deployment
2 parents 6a944a8 + 534390e commit 6cddc4e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# go-flare
22

3-
go-flare is a modified version of [[email protected]](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.18) + [[email protected]](https://github.com/ava-labs/coreth/releases/tag/v0.11.0) that incorporates the Flare Specific Features such as Prioritized contract handling and invoking Flare daemon contract.
4-
5-
This code also supports Songbird Network (and Coston testnet) node deployment from the version v0.6.6 onward.
3+
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.
64

75
All nodes should upgrade to the version 1.9.0 **before the following dates**:
86
- Coston2 network: November 26, 2024 at 12:00:00 UTC

coreth/core/tx_pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ func validateTxData(tx *types.Transaction) error {
17621762
}
17631763
}
17641764
// Check if transaction is on allow list for FTSO v1 contract
1765-
if *to == prioritisedFTSOContractAddress && (tx.ChainId().Cmp(params.FlareChainID) == 0 || tx.ChainId().Cmp(params.CostwoChainID) == 0) || tx.ChainId().Cmp(params.LocalFlareChainID) == 0 {
1765+
if *to == prioritisedFTSOContractAddress && (tx.ChainId().Cmp(params.FlareChainID) == 0 || tx.ChainId().Cmp(params.CostwoChainID) == 0 || tx.ChainId().Cmp(params.LocalFlareChainID) == 0) {
17661766
isValidDaemon := checkDataPrefix(tx.Data(), prioritisedFTSOContractDataPrefixesFlareNetworks)
17671767
additionalAllowedMethodIdentifiers := [][4]byte{
17681768
{0x67, 0xfc, 0x40, 0x29}, // cancelGovernanceCall

0 commit comments

Comments
 (0)