Skip to content

Commit eaf419c

Browse files
committed
Add functionality to pause EVM transactions
1 parent 4bf5bd0 commit eaf419c

4 files changed

Lines changed: 492 additions & 5 deletions

File tree

engine/execution/state/bootstrap/bootstrap_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestBootstrapLedger(t *testing.T) {
5858

5959
func TestBootstrapLedger_ZeroTokenSupply(t *testing.T) {
6060
expectedStateCommitmentBytes, _ := hex.DecodeString(
61-
"c1d03618edf9763e72b5ad9415260cf560c43c5a0db292201271ccef75cd503a",
61+
"3bad0f1a2a10fa51ee664f6c5b8cee5a4aa30bee2d9d47c82b2d7a20a8d574c8",
6262
)
6363
expectedStateCommitment, err := flow.ToStateCommitment(expectedStateCommitmentBytes)
6464
require.NoError(t, err)
@@ -107,7 +107,7 @@ func TestBootstrapLedger_ZeroTokenSupply(t *testing.T) {
107107
// This tests that the state commitment has not changed for the bookkeeping parts of the transaction.
108108
func TestBootstrapLedger_EmptyTransaction(t *testing.T) {
109109
expectedStateCommitmentBytes, _ := hex.DecodeString(
110-
"d903575ce35c5aef7a743883f006e610da5f3a93f7a876e2a1471d174450933c",
110+
"ea8c90336f867ad3c0e23ed8cda8bf3e3a94092cb3ce816700d796ecbf2ca081",
111111
)
112112
expectedStateCommitment, err := flow.ToStateCommitment(expectedStateCommitmentBytes)
113113
require.NoError(t, err)

0 commit comments

Comments
 (0)