Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Jul 1, 2024
1 parent 3174766 commit 2e8d785
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions replay/src/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ use std::{collections::VecDeque, mem};
#[derive(Debug)]
pub struct Trace {
pub top_frame: TraceFrame,
pub receipt: TransactionReceipt,
pub tx: Transaction,
pub json: Value,
}
Expand Down Expand Up @@ -61,7 +60,6 @@ impl Trace {

Ok(Self {
top_frame,
receipt,
tx,
json,
})
Expand Down Expand Up @@ -401,12 +399,8 @@ pub struct Hostio {

#[derive(Clone, Debug, SimpleSnakeNames)]
pub enum HostioKind {
UserEntrypoint {
args_len: u32,
},
UserReturned {
status: u32,
},
UserEntrypoint {},
UserReturned {},
ReadArgs {
args: Box<[u8]>,
},
Expand Down

0 comments on commit 2e8d785

Please sign in to comment.