Skip to content

Commit f047a03

Browse files
authored
Merge branch 'flare-foundation:v1_10_0-upgrade' into v1_10_0-upgrade
2 parents b80847f + 6f39d6b commit f047a03

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# go-flare
22

3+
**Please note that this release is unable to run Flare or Songbird mainnets - and will display "mainnet is not supported" if attempted to run with flare or songbird network id configuration.**
4+
5+
**Testnets should be updated to this version before**
6+
7+
- **Coston (Songbird testnet): March 27, 2025 at 13 UTC**
8+
- **Coston 2 (Flare testnet) : April 8, 2025 at 12 UTC**
9+
310
go-flare is a modified version of [avalanchego@v1.10.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.0) and [coreth@v0.12.0](https://github.com/ava-labs/coreth/releases/tag/v0.12.0), incorporating specific features for Flare and Songbird networks. These features include prioritized contract handling and the invocation of the daemon contract.
411

512
## System Requirements
13+
614
- go version 1.21.8
715
- gcc, g++ and jq
816
- CPU: Equivalent of 8 AWS vCPU

avalanchego/config/config.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,6 +1330,10 @@ func GetNodeConfig(v *viper.Viper) (node.Config, error) {
13301330
return node.Config{}, err
13311331
}
13321332

1333+
if nodeConfig.NetworkID == constants.FlareID || nodeConfig.NetworkID == constants.SongbirdID {
1334+
return node.Config{}, errors.New("mainnet is not supported")
1335+
}
1336+
13331337
// Database
13341338
nodeConfig.DatabaseConfig, err = getDatabaseConfig(v, nodeConfig.NetworkID)
13351339
if err != nil {

0 commit comments

Comments
 (0)