Skip to content

Commit cc221c2

Browse files
committed
taiga
1 parent 174b001 commit cc221c2

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

types/upgrade.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,7 @@ const (
4747

4848
// Prairie is the upgrade name for Prairie upgrade
4949
Prairie = "Prairie"
50+
51+
// Taiga is the upgrade name for Taiga upgrade
52+
Taiga = "Taiga"
5053
)

x/upgrade/types/upgrade_config.go

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ const (
5353

5454
// Prairie is the upgrade name for Prairie upgrade
5555
Prairie = types.Prairie
56+
57+
// Taiga is the upgrade name for Taiga upgrade
58+
Taiga = types.Taiga
5659
)
5760

5861
// The default upgrade config for networks
@@ -118,6 +121,10 @@ var (
118121
Name: Prairie,
119122
Height: 31432100,
120123
Info: "Prairie hardfork",
124+
}).SetPlan(&Plan{
125+
Name: Taiga,
126+
Height: math.MaxInt64,
127+
Info: "Taiga hardfork",
121128
})
122129

123130
TestnetChainID = "greenfield_5600-1"
@@ -181,6 +188,10 @@ var (
181188
Name: Prairie,
182189
Height: 29798400,
183190
Info: "Prairie hardfork",
191+
}).SetPlan(&Plan{
192+
Name: Taiga,
193+
Height: math.MaxInt64,
194+
Info: "Taiga hardfork",
184195
})
185196
)
186197

0 commit comments

Comments
 (0)