Skip to content

Commit

Permalink
fix(rpc): use correct rename (paradigmxyz#3020)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Jun 6, 2023
1 parent 2e11c6f commit 95b9e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rpc/rpc-types/src/eth/trace/geth/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub struct StructLog {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub stack: Option<Vec<U256>>,
/// Last call's return data. Enabled via enableReturnData
#[serde(default, rename = "refund", skip_serializing_if = "Option::is_none")]
#[serde(default, rename = "returnData", skip_serializing_if = "Option::is_none")]
pub return_data: Option<Bytes>,
/// Storage slots of current contract read from and written to. Only emitted for SLOAD and
/// SSTORE. Disabled via disableStorage
Expand Down

0 comments on commit 95b9e32

Please sign in to comment.