Skip to content

Commit

Permalink
Fix chain-id missing in one of the RPC transaction conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexb5dh committed Sep 3, 2024
1 parent 1dee3c0 commit 363fdc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.Facade/Eth/TransactionForRpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public TransactionForRpc() { }
return tx;
}

public Transaction ToTransaction(ulong? chainId = null) => ToTransaction<Transaction>();
public Transaction ToTransaction(ulong? chainId = null) => ToTransaction<Transaction>(chainId);

public T ToTransaction<T>(ulong? chainId = null) where T : Transaction, new()
{
Expand Down

0 comments on commit 363fdc9

Please sign in to comment.