Skip to content

Commit

Permalink
evil: #1755
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Aug 30, 2023
1 parent 4122caf commit 4c64aab
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 4c64aab

Please sign in to comment.