Skip to content
Prev Previous commit
Next Next commit
merge master and fix conflict
  • Loading branch information
zqhxuyuan committed Jun 14, 2022
commit 16f582f9fffbbda13fdcbcccad4296e3df06dfed
2 changes: 0 additions & 2 deletions modules/asset-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ frame-system = { git = "https://github.com/paritytech/substrate", branch = "polk
primitives = { package = "acala-primitives", path = "../../primitives", default-features = false }

xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }

module-support = { path = "../support", default-features = false }

Expand Down
2 changes: 0 additions & 2 deletions modules/transaction-payment/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ support = { package = "module-support", path = "../support", default-features =

orml-traits = { path = "../../orml/traits", default-features = false }
xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.23", default-features = false }

[dev-dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.23" }
Expand Down
2 changes: 1 addition & 1 deletion modules/transaction-payment/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use frame_support::{
WithdrawReasons,
},
transactional,
weights::{constants::WEIGHT_PER_SECOND, DispatchInfo, GetDispatchInfo, Pays, PostDispatchInfo, WeightToFee},
weights::{DispatchInfo, GetDispatchInfo, Pays, PostDispatchInfo, WeightToFee},
BoundedVec, PalletId,
};
use frame_system::pallet_prelude::*;
Expand Down
2 changes: 1 addition & 1 deletion modules/transaction-payment/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ fn charges_fee_when_validate_with_fee_path_call() {
// Enable dex with Alice, and initialize tx charge fee pool
builder_with_dex_and_fee_pool(true).execute_with(|| {
let dex_acc: AccountId = PalletId(*b"aca/dexm").into_account_truncating();
let dex_ausd = Currencies::free_balance(ACA, &dex_acc);
let dex_aca = Currencies::free_balance(ACA, &dex_acc);

let fee: Balance = 50 * 2 + 100 + 10;
let fee_surplus = fee + CustomFeeSurplus::get().mul_ceil(fee);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.