Skip to content

Commit

Permalink
Fix test_actions
Browse files Browse the repository at this point in the history
  • Loading branch information
elmato committed Jun 4, 2024
1 parent bdca318 commit 5455f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using namespace silkworm;
if(orlptx) {
Transaction tx;
ByteView bv{(const uint8_t*)orlptx->data(), orlptx->size()};
eosio::check(rlp::decode_transaction(bv, tx, rlp::Eip2718Wrapping::kNone) && bv.empty(), "unable to decode transaction");
eosio::check(rlp::decode_transaction(bv, tx, rlp::Eip2718Wrapping::kString) && bv.empty(), "unable to decode transaction");

runtime_config rc {
.allow_special_signature = false,
Expand Down Expand Up @@ -378,4 +378,4 @@ using namespace silkworm;
}
}

}
}

0 comments on commit 5455f04

Please sign in to comment.