Skip to content

Commit

Permalink
upgrade stage network
Browse files Browse the repository at this point in the history
Signed-off-by: p4u <[email protected]>
  • Loading branch information
p4u committed Jun 27, 2024
1 parent d4243e0 commit a7bb7b8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion vochain/genesis/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import (
var networks = map[string]string{
"test": "vocdoni/TEST/1",
"dev": "vocdoni/DEV/36",
"stage": "vocdoni/STAGE/11",
"stage": "vocdoni/STAGE/12",
"lts": "vocdoni/LTS/1.2",
}

Expand Down Expand Up @@ -127,6 +127,16 @@ var (
ConsensusParams: DefaultConsensusParams(),
AppState: jsonRawMessage(initialAppStateForStage),
},
EndOfChain: 1063400,
},
"vocdoni/STAGE/12": {
GenesisDoc: comettypes.GenesisDoc{
GenesisTime: time.Date(2024, time.June, 27, 1, 0, 0, 0, time.UTC),
InitialHeight: 1063401,
ConsensusParams: DefaultConsensusParams(),
AppState: jsonRawMessage(initialAppStateForStage),
AppHash: []byte(types.HexStringToHexBytes("7cb55a508f797d1d7fa7612855c5177726ea459c6c26056fe35ed6919fab5c3c")),
},
},

// LTS production network
Expand Down

0 comments on commit a7bb7b8

Please sign in to comment.