Skip to content

Commit

Permalink
clippy: update in gen.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ICavlek committed Oct 23, 2024
1 parent 6d4967e commit c1ca983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ pub mod gen {
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(untagged)]
pub enum InvokeTxnTraceExecuteInvocation {
FunctionInvocation(FunctionInvocation),
FunctionInvocation(Box<FunctionInvocation>),
RevertReason { revert_reason: String },
}

Expand Down Expand Up @@ -1761,7 +1761,7 @@ pub mod gen {
pub enum TransactionTrace {
InvokeTxnTrace(InvokeTxnTrace),
DeclareTxnTrace(DeclareTxnTrace),
DeployAccountTxnTrace(DeployAccountTxnTrace),
DeployAccountTxnTrace(Box<DeployAccountTxnTrace>),
L1HandlerTxnTrace(L1HandlerTxnTrace),
}

Expand Down

0 comments on commit c1ca983

Please sign in to comment.