Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Eikix committed Oct 18, 2023
1 parent ce739c0 commit 7008165
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/evm/src/instructions/block_information.cairo
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use evm::balance::balance;
//! Block Information.

use evm::errors::EVMError;
Expand All @@ -7,7 +8,6 @@ use evm::stack::StackTrait;
// Corelib imports
use starknet::info::{get_block_number, get_block_timestamp};
use utils::constants::CHAIN_ID;
use evm::balance::balance;

#[generate_trait]
impl BlockInformation of BlockInformationTrait {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use evm::instructions::BlockInformationTrait;
use evm::stack::StackTrait;
use evm::tests::test_utils::{setup_machine, evm_address};
use starknet::testing::{set_block_timestamp, set_block_number, set_contract_address};
use utils::constants::CHAIN_ID;
use contracts::kakarot_core::interface::IExtendedKakarotCoreDispatcherTrait;
use contracts::tests::utils::{
deploy_kakarot_core, deploy_native_token, fund_account_with_native_token
};
use evm::instructions::BlockInformationTrait;
use evm::stack::StackTrait;
use evm::tests::test_utils::{setup_machine, evm_address};
use openzeppelin::token::erc20::interface::IERC20CamelDispatcherTrait;
use starknet::testing::{set_block_timestamp, set_block_number, set_contract_address};
use utils::constants::CHAIN_ID;

#[test]
#[available_gas(20000000)]
Expand Down

0 comments on commit 7008165

Please sign in to comment.