Skip to content

Commit

Permalink
set Jutland to activate at 10-11-2021 3pm PDT (#2812)
Browse files Browse the repository at this point in the history
Co-authored-by: Raullen Chai <raullenchai@gmail.com>
  • Loading branch information
dustinxie and raullenchai committed Sep 27, 2021
1 parent e89be88 commit 8eec1b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blockchain/genesis/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func defaultConfig() Genesis {
GreenlandBlockHeight: 6544441,
HawaiiBlockHeight: 11267641,
IcelandBlockHeight: 12289321,
JutlandBlockHeight: 16289321,
JutlandBlockHeight: 13685401,
KamchatkaBlockHeight: 26289321,
},
Account: Account{
Expand Down
6 changes: 3 additions & 3 deletions blockchain/genesis/heightupgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ func TestNewHeightChange(t *testing.T) {
require.True(cfg.IsHawaii(uint64(11267641)))
require.False(cfg.IsIceland(uint64(12289320)))
require.True(cfg.IsIceland(uint64(12289321)))
require.False(cfg.IsJutland(uint64(16289320)))
require.True(cfg.IsJutland(uint64(16289321)))
require.False(cfg.IsJutland(uint64(13685400)))
require.True(cfg.IsJutland(uint64(13685401)))
require.False(cfg.IsKamchatka(uint64(26289320)))
require.True(cfg.IsKamchatka(uint64(26289321)))

Expand All @@ -59,6 +59,6 @@ func TestNewHeightChange(t *testing.T) {
require.Equal(cfg.GreenlandBlockHeight, uint64(6544441))
require.Equal(cfg.HawaiiBlockHeight, uint64(11267641))
require.Equal(cfg.IcelandBlockHeight, uint64(12289321))
require.Equal(cfg.JutlandBlockHeight, uint64(16289321))
require.Equal(cfg.JutlandBlockHeight, uint64(13685401))
require.Equal(cfg.KamchatkaBlockHeight, uint64(26289321))
}

0 comments on commit 8eec1b7

Please sign in to comment.