Skip to content

Commit

Permalink
Also skip hashes for NewPayload
Browse files Browse the repository at this point in the history
  • Loading branch information
benaadams committed Jan 29, 2024
1 parent f5c1fcf commit d936e90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public virtual bool TryGetBlock(out Block? block, UInt256? totalDifficulty = nul
{
try
{
return Rlp.Decode<Transaction>(t, RlpBehaviors.SkipTypedWrapping);
return Rlp.Decode<Transaction>(t, RlpBehaviors.SkipTypedWrapping | RlpBehaviors.ExcludeHashes);
}
catch (RlpException e)
{
Expand Down

0 comments on commit d936e90

Please sign in to comment.