From 5455f04779b22e43905efbb5b639136bad7b57a7 Mon Sep 17 00:00:00 2001 From: Matias Romeo Date: Tue, 4 Jun 2024 17:22:27 -0300 Subject: [PATCH] Fix test_actions --- src/test_actions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test_actions.cpp b/src/test_actions.cpp index 1425772d..6b84c5d4 100644 --- a/src/test_actions.cpp +++ b/src/test_actions.cpp @@ -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, @@ -378,4 +378,4 @@ using namespace silkworm; } } -} \ No newline at end of file +}