Skip to content

Commit

Permalink
fixup! Merge branch 'tiago/token-whitelist' (#1755)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Sep 6, 2023
1 parent db00bbc commit ac8e7f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions shared/src/ledger/native_vp/ethereum_bridge/nut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ mod test_nuts {
use proptest::prelude::*;

use super::*;
use crate::ledger::gas::VpGasMeter;
use crate::ledger::gas::{TxGasMeter, VpGasMeter};
use crate::vm::wasm::VpCache;
use crate::vm::WasmCacheRwAccess;

Expand Down Expand Up @@ -189,7 +189,9 @@ mod test_nuts {
&wl_storage.write_log,
&tx,
&TxIndex(0),
VpGasMeter::new(0u64),
VpGasMeter::new_from_tx_meter(&TxGasMeter::new_from_sub_limit(
u64::MAX.into(),
)),
&keys_changed,
&verifiers,
VpCache::new(temp_dir(), 100usize),
Expand Down

0 comments on commit ac8e7f5

Please sign in to comment.