Skip to content

Commit

Permalink
revert workflow_test.go changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmel committed Feb 21, 2024
1 parent fd1ffc0 commit a23cb5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions suave/e2e/workflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ func TestBlockBuildingPrecompiles(t *testing.T) {
require.NoError(t, err)

{ // Test the bundle simulation precompile through eth_call
calldata, err := artifacts.SuaveAbi.Methods["simulateBundle"].Inputs.Pack(bundleBytes, "")
calldata, err := artifacts.SuaveAbi.Methods["simulateBundle"].Inputs.Pack(bundleBytes)
require.NoError(t, err)

var simResult hexutil.Bytes
Expand Down Expand Up @@ -806,7 +806,7 @@ func TestBlockBuildingPrecompiles(t *testing.T) {
FeeRecipient: common.Address{0x42},
}

packed, err := artifacts.SuaveAbi.Methods["buildEthBlock"].Inputs.Pack(payloadArgsTuple, record.Id, "", "")
packed, err := artifacts.SuaveAbi.Methods["buildEthBlock"].Inputs.Pack(payloadArgsTuple, record.Id, "")
require.NoError(t, err)

var simResult hexutil.Bytes
Expand Down

0 comments on commit a23cb5c

Please sign in to comment.