Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke26 committed Nov 7, 2024
1 parent 667a412 commit 47a0cdd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Nethermind/Nethermind.JsonRpc/Data/ReceiptForRpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ public ReceiptForRpc(Hash256 txHash, TxReceipt receipt, TxGasInfo gasInfo, int l
public long CumulativeGasUsed { get; set; }
public long GasUsed { get; set; }

[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public ulong? BlobGasUsed { get; set; }

[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public UInt256? BlobGasPrice { get; set; }

public UInt256? EffectiveGasPrice { get; set; }
Expand All @@ -55,6 +57,7 @@ public ReceiptForRpc(Hash256 txHash, TxReceipt receipt, TxGasInfo gasInfo, int l
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public Address To { get; set; }

[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public Address? ContractAddress { get; set; }
public LogEntryForRpc[] Logs { get; set; }
public Bloom? LogsBloom { get; set; }
Expand Down

0 comments on commit 47a0cdd

Please sign in to comment.