Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

To polkadot-v0.9.19 #86

Merged
merged 37 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f295d02
Anchor polkadot-v0.9.19
jiguantong May 31, 2022
c42f36b
Companion for paritytech/cumulus#1070
jiguantong May 31, 2022
0d39d71
Companion for paritytech/cumulus#1071
jiguantong May 31, 2022
bccd732
Companion for paritytech/cumulus#1081
jiguantong Jun 1, 2022
5cb0bc1
Companion for paritytech/cumulus#1089
jiguantong Jun 1, 2022
37e184a
Companion for paritytech/cumulus#1081
jiguantong Jun 1, 2022
7ffa28d
Companion for paritytech/cumulus#1152
jiguantong Jun 1, 2022
1d07528
Companion for paritytech/cumulus#1156
jiguantong Jun 1, 2022
a207c31
format
jiguantong Jun 1, 2022
befa489
Companion for paritytech/cumulus#1165
jiguantong Jun 1, 2022
56671dd
Part of paritytech/cumulus#1081
jiguantong Jun 1, 2022
3341d8f
Companion for paritytech/cumulus#1169
jiguantong Jun 1, 2022
894a123
format
jiguantong Jun 1, 2022
a2c8764
Sync with Polkadot's Rust Toolchain (#88)
aurexav Jun 1, 2022
e357cc2
Add xcm dependency for runtime-common
jiguantong Jun 2, 2022
02b65bc
Add xcm-executor dependency for runtime-common
jiguantong Jun 4, 2022
b38b192
Companion for darwinia-messages-substrate #89
jiguantong Jun 6, 2022
1d46ecc
enable the "js" feature for getrandom
jiguantong Jun 7, 2022
c33260b
Add trait bound for OriginOf<ThisChain<B>>
jiguantong Jun 7, 2022
aab00a5
Fix runtime/common xcm&xcm-executor std
jiguantong Jun 7, 2022
b97f3ea
impl SenderOrigin for Origin #89
jiguantong Jun 7, 2022
6d3ada7
Fix compile
jiguantong Jun 7, 2022
6d7edb6
merge #85
jiguantong Jun 6, 2022
698f449
bump deps
jiguantong Jun 8, 2022
bc5b01e
repair compile
xiaoch05 Jun 8, 2022
393cd53
format
jiguantong Jun 8, 2022
adb5db4
Merge branch 'main' into prepare-polkadot-v0.9.19
jiguantong Jun 8, 2022
b300b0d
Correct AssetId for XCM trader
jiguantong Jun 20, 2022
e9880ea
Use `darwinia-primitives`
aurexav Jun 21, 2022
8d4a297
Format
aurexav Jun 21, 2022
e939cc3
Format
aurexav Jun 21, 2022
00483be
Correct license
jiguantong Jun 21, 2022
3100d34
Merge branch 'prepare-polkadot-v0.9.19' of https://github.com/darwini…
jiguantong Jun 21, 2022
816e9c9
License 2021 -> 2022
jiguantong Jun 21, 2022
e9e594c
Format
aurexav Jun 21, 2022
48517f2
Merge commit '72c0733c2e2ef9417e0774bf67f1991f094d5ee9' into prepare-…
aurexav Jun 21, 2022
456f208
Fix
aurexav Jun 21, 2022
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
format
  • Loading branch information
jiguantong committed Jun 1, 2022
commit a207c316232cf44d5c9f0e5bf877d38fd7355899
4 changes: 2 additions & 2 deletions runtime/crab-parachain/src/pallets/transaction_payment.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// --- paritytech ---
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
use frame_support::weights::ConstantMultiplier;
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
// --- darwinia-network ---
use crate::*;

Expand All @@ -14,8 +14,8 @@ frame_support::parameter_types! {

impl Config for Runtime {
type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type OnChargeTransaction = CurrencyAdapter<Ring, DealWithFees<Runtime>>;
type OperationalFeeMultiplier = OperationalFeeMultiplier;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type WeightToFee = WeightToFee;
}
4 changes: 2 additions & 2 deletions runtime/darwinia-parachain/src/pallets/transaction_payment.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// --- paritytech ---
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
use frame_support::weights::ConstantMultiplier;
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
// --- darwinia-network ---
use crate::*;

Expand All @@ -14,8 +14,8 @@ frame_support::parameter_types! {

impl Config for Runtime {
type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type OnChargeTransaction = CurrencyAdapter<Ring, DealWithFees<Runtime>>;
type OperationalFeeMultiplier = OperationalFeeMultiplier;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type WeightToFee = WeightToFee;
}
4 changes: 2 additions & 2 deletions runtime/pangolin-parachain/src/pallets/transaction_payment.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// --- paritytech ---
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
use frame_support::weights::ConstantMultiplier;
use pallet_transaction_payment::{Config, CurrencyAdapter, TargetedFeeAdjustment};
// --- darwinia-network ---
use crate::*;

Expand All @@ -14,8 +14,8 @@ frame_support::parameter_types! {

impl Config for Runtime {
type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type OnChargeTransaction = CurrencyAdapter<Ring, DealWithFees<Runtime>>;
type OperationalFeeMultiplier = OperationalFeeMultiplier;
type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
type WeightToFee = WeightToFee;
}