Skip to content

Commit

Permalink
update state commitments
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuahannan committed Nov 28, 2023
1 parent 2d0ca2f commit 297a656
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engine/execution/state/bootstrap/bootstrap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestBootstrapLedger(t *testing.T) {
}

func TestBootstrapLedger_ZeroTokenSupply(t *testing.T) {
expectedStateCommitmentBytes, _ := hex.DecodeString("ab09970765c4d26fc5c5e6d92655bc6ef6bb2fe43ee6f3bc07c7f73b904e380f")
expectedStateCommitmentBytes, _ := hex.DecodeString("2d239f05dbc69fb54487256809055f24d348297786d631a9891bc2ee16438bcf")
expectedStateCommitment, err := flow.ToStateCommitment(expectedStateCommitmentBytes)
require.NoError(t, err)

Expand Down
4 changes: 2 additions & 2 deletions utils/unittest/execution_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ func genesisCommitHexByChainID(chainID flow.ChainID) string {
return GenesisStateCommitmentHex
}
if chainID == flow.Testnet {
return "b4da9fd9902a58656e7b923afdb490bdb42494885c902f2877c8ec4a3293083c"
return "a66422b81ef1e3f5302551a40ef63a46180ae4c7e4e1a599aa1b7cfc531d019f"
}
if chainID == flow.Sandboxnet {
return "e1c08b17f9e5896f03fe28dd37ca396c19b26628161506924fbf785834646ea1"
}
return "398b358b91c493fe1f9775f6d9a947073402f4c14296cb4c464bae68b8de0c93"
return "7145b0c939db081c7dad1f8807acd75b054127e8040462b71122bd63cf74c7ab"
}

0 comments on commit 297a656

Please sign in to comment.