Skip to content

Commit

Permalink
Fix test_data usage after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
slumber committed Dec 14, 2020
1 parent a266bd2 commit 66ae26a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/lib/storage/src/tests/chain/operations_ext/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use zksync_types::{ethereum::OperationType, Action};
use self::setup::TransactionsHistoryTestSetup;
use crate::{
chain::operations_ext::{records::AccountTxReceiptResponse, SearchDirection},
test_data::{dummy_ethereum_tx_hash, gen_unique_operation, BLOCK_SIZE_CHUNKS},
test_data::{dummy_ethereum_tx_hash, get_unique_operation, BLOCK_SIZE_CHUNKS},
tests::db_test,
QueryResult, StorageProcessor,
};
Expand Down Expand Up @@ -543,7 +543,7 @@ async fn get_account_transactions_receipts(mut storage: StorageProcessor<'_>) ->
let operation = storage
.chain()
.block_schema()
.execute_operation(gen_unique_operation(1, Action::Commit, BLOCK_SIZE_CHUNKS))
.execute_operation(get_unique_operation(1, Action::Commit, BLOCK_SIZE_CHUNKS))
.await?;
storage
.chain()
Expand All @@ -561,7 +561,7 @@ async fn get_account_transactions_receipts(mut storage: StorageProcessor<'_>) ->
let operation = storage
.chain()
.block_schema()
.execute_operation(gen_unique_operation(
.execute_operation(get_unique_operation(
1,
Action::Verify {
proof: Default::default(),
Expand Down

0 comments on commit 66ae26a

Please sign in to comment.