Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
yarkinwho committed Mar 1, 2024
1 parent 3bb66d1 commit 0192d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic_evm_tester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void evm_eoa::sign(silkworm::Transaction& trx, std::optional<uint64_t> evm_chain
if(evm_chain_id.has_value())
trx.chain_id = evm_chain_id.value();
trx.nonce = next_nonce++;
silkworm::rlp::encode(rlp, trx);
trx.encode_for_signing(rlp);
ethash::hash256 hash{silkworm::keccak256(rlp)};

secp256k1_ecdsa_recoverable_signature sig;
Expand Down

0 comments on commit 0192d46

Please sign in to comment.