Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Tirka committed May 28, 2022
1 parent 4211e78 commit 466fe01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions evm-utils/evm-block-recovery/src/routines/restore_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use solana_storage_bigtable::LedgerStorage;
use crate::extensions::NativeBlockExt;

use super::find::BlockRange;
use super::write_block;

pub async fn restore_chain(
ledger: &LedgerStorage,
Expand Down
2 changes: 1 addition & 1 deletion evm-utils/evm-block-recovery/src/routines/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::*;
use evm_state::Block;
use solana_storage_bigtable::LedgerStorage;

use crate::routines::write_block;
use super::write_block;

pub async fn upload(ledger: &LedgerStorage, collection_path: String) -> Result<()> {
log::info!("Reading file: '{}'...", &collection_path);
Expand Down

0 comments on commit 466fe01

Please sign in to comment.