Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix build
  • Loading branch information
kianenigma committed Oct 15, 2019
commit fd1867a8a5ffb1f42f9898bd97e53ae438feda93
4 changes: 2 additions & 2 deletions node/executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ mod tests {
use system::{EventRecord, Phase};
use node_runtime::{
Header, Block, UncheckedExtrinsic, CheckedExtrinsic, Call, Runtime, Balances, BuildStorage,
System, Event, TransferFee, TransactionBaseFee, TransactionByteFee,
constants::currency::*, impls::WeightToFee,
System, Event, TransferFee, TransactionBaseFee, TransactionByteFee, WeightToFee,
constants::currency::*,
};
use node_primitives::{Balance, Hash, BlockNumber};
use node_testing::keyring::*;
Expand Down
2 changes: 1 addition & 1 deletion node/runtime/src/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ mod tests {
}

fn target() -> Weight {
TARGET_BLOCK_FULLNESS * max()
<Runtime as system::Trait>::WeightMultiplierUpdate::get() * max()
}

// poc reference implementation.
Expand Down