Skip to content

Commit

Permalink
More clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Aug 20, 2024
1 parent 18c5199 commit 897eb16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/call_frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl CallFrame {
) -> Self {
Self {
pc: 0,
stipend: stipend,
stipend,
gas_left: Saturating(gas),
exception_handler,
sp: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ impl Execution {
heaps: self.heaps.clone(),
hook_address: self.hook_address,
register_context_u128: self.register_context_u128,
registers: self.registers.clone(),
registers: self.registers,
running_contexts: self.running_contexts.clone(),
tx_number: self.tx_number,
use_hooks: self.use_hooks,
Expand Down

0 comments on commit 897eb16

Please sign in to comment.