Skip to content

Commit

Permalink
fixup missing <bytecode>
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Feb 2, 2024
1 parent 3b3b36c commit d77ecd8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/unittests/state_transition_tx_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ TEST_F(state_transition, access_list_storage)
tx.to = To;
tx.access_list = {{To, {0x01_bytes32}}};

Check warning on line 101 in test/unittests/state_transition_tx_test.cpp

View check run for this annotation

Codecov / codecov/patch

test/unittests/state_transition_tx_test.cpp#L101

Added line #L101 was not covered by tests

pre.insert(To,
{.storage = {{0x01_bytes32, {0x01_bytes32, 0x01_bytes32}}}, .code = sstore(2, sload(1))});
pre.insert(To, {.storage = {{0x01_bytes32, 0x01_bytes32}}, .code = sstore(2, sload(1))});

Check warning on line 103 in test/unittests/state_transition_tx_test.cpp

View check run for this annotation

Codecov / codecov/patch

test/unittests/state_transition_tx_test.cpp#L103

Added line #L103 was not covered by tests

expect.post[To].storage[0x01_bytes32] = 0x01_bytes32;
expect.post[To].storage[0x02_bytes32] = 0x01_bytes32;

Check warning on line 106 in test/unittests/state_transition_tx_test.cpp

View check run for this annotation

Codecov / codecov/patch

test/unittests/state_transition_tx_test.cpp#L105-L106

Added lines #L105 - L106 were not covered by tests
Expand Down

0 comments on commit d77ecd8

Please sign in to comment.