Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jrchatruc committed Jun 11, 2024
1 parent 1813a30 commit a1bda27
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/main.rs → src/bin/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
mod op_handlers;
mod opcode;
mod state;
mod value;

use std::env;
use std::process::exit;

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub mod state;
mod value;

use op_handlers::add::_add;
use opcode::Opcode;
pub use opcode::Opcode;
use state::VMState;
use u256::U256;
use zkevm_opcode_defs::definitions::synthesize_opcode_decoding_tables;
Expand Down
2 changes: 1 addition & 1 deletion src/state.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::collections::HashMap;

use crate::{opcode::Opcode, value::TaggedValue};
use crate::{value::TaggedValue, Opcode};
use u256::U256;

#[derive(Debug)]
Expand Down

0 comments on commit a1bda27

Please sign in to comment.