Skip to content

Commit

Permalink
arbitrator: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tsahee committed Feb 7, 2024
1 parent 0c1dba0 commit 84c5def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions arbitrator/arbutil/src/evm/req.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,7 @@ impl<T: RequestHandler> EvmApi for EvmApiRequestor<T> {
req.extend(gas_left.to_be_bytes());
req.extend(offset.to_be_bytes());
req.extend(size.to_be_bytes());
let (res, cost) = self
.handler
.handle_request(EvmApiMethod::AccountCode, &req);
let (res, cost) = self.handler.handle_request(EvmApiMethod::AccountCode, &req);
(res, cost)
}

Expand Down
2 changes: 1 addition & 1 deletion arbitrator/prover/src/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{
value::{ArbValueType, FunctionType},
wavm::{wasm_to_wavm, Instruction, Opcode},
};
use arbutil::{Color, evm::user::UserOutcomeKind};
use arbutil::{evm::user::UserOutcomeKind, Color};
use eyre::{bail, ErrReport, Result};
use lazy_static::lazy_static;
use num_derive::FromPrimitive;
Expand Down

0 comments on commit 84c5def

Please sign in to comment.