Skip to content

Commit

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

Check warning on line 23 in replay/src/trace.rs

View workflow job for this annotation

GitHub Actions / clippy

field `receipt` is never read

warning: field `receipt` is never read --> replay/src/trace.rs:23:9 | 21 | pub struct Trace { | ----- field in this struct 22 | pub top_frame: TraceFrame, 23 | pub receipt: TransactionReceipt, | ^^^^^^^ | = note: `Trace` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis = note: `#[warn(dead_code)]` on by default
pub tx: Transaction,
pub json: Value,
}
Expand Down Expand Up @@ -60,6 +61,7 @@ impl Trace {

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

#[derive(Clone, Debug, SimpleSnakeNames)]
pub enum HostioKind {
UserEntrypoint {},
UserReturned {},
UserEntrypoint {
args_len: u32,

Check warning on line 405 in replay/src/trace.rs

View workflow job for this annotation

GitHub Actions / clippy

field `args_len` is never read

warning: field `args_len` is never read --> replay/src/trace.rs:405:9 | 404 | UserEntrypoint { | -------------- field in this variant 405 | args_len: u32, | ^^^^^^^^
},
UserReturned {
status: u32,

Check warning on line 408 in replay/src/trace.rs

View workflow job for this annotation

GitHub Actions / clippy

field `status` is never read

warning: field `status` is never read --> replay/src/trace.rs:408:9 | 407 | UserReturned { | ------------ field in this variant 408 | status: u32, | ^^^^^^
},
ReadArgs {
args: Box<[u8]>,
},
Expand Down

0 comments on commit 7470d54

Please sign in to comment.