[go: nahoru, domu]

Skip to content

Commit

Permalink
Update mod.rs Bytes to Option<Bytes> (#2712)
Browse files Browse the repository at this point in the history
That will solve when rpc server returns: "output":null, as Nethermind does
  • Loading branch information
m1stoyanov committed Feb 12, 2024
1 parent b61526f commit 6136dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-core/src/types/trace/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub enum TraceType {
/// Ad-Hoc trace API type
pub struct BlockTrace {
/// Output Bytes
pub output: Bytes,
pub output: Option<Bytes>,
/// Transaction Trace
pub trace: Option<Vec<TransactionTrace>>,
/// Virtual Machine Execution Trace
Expand Down

0 comments on commit 6136dde

Please sign in to comment.