mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 22:11:02 +00:00
Migrate back to Substrate master (#528)
* migrate back to Substrate master * fmt * clippy
This commit is contained in:
committed by
Bastian Köcher
parent
698d8d5600
commit
dd7242bc79
@@ -26,31 +26,31 @@ pallet-substrate-bridge = { path = "../../../modules/substrate", default-feature
|
||||
|
||||
# Substrate Dependencies
|
||||
|
||||
frame-executive = { version = "2.0", default-features = false }
|
||||
frame-support = { version = "2.0", default-features = false }
|
||||
frame-system = { version = "2.0", default-features = false }
|
||||
frame-system-rpc-runtime-api = { version = "2.0", default-features = false }
|
||||
pallet-aura = { version = "2.0", default-features = false }
|
||||
pallet-balances = { version = "2.0", default-features = false }
|
||||
pallet-grandpa = { version = "2.0", default-features = false }
|
||||
pallet-randomness-collective-flip = { version = "2.0", default-features = false }
|
||||
pallet-session = { version = "2.0", default-features = false }
|
||||
pallet-sudo = { version = "2.0", default-features = false }
|
||||
pallet-timestamp = { version = "2.0", default-features = false }
|
||||
pallet-transaction-payment = { version = "2.0", default-features = false }
|
||||
sp-api = { version = "2.0", default-features = false }
|
||||
sp-block-builder = { version = "2.0", default-features = false }
|
||||
sp-consensus-aura = { version = "0.8", default-features = false }
|
||||
sp-core = { version = "2.0", default-features = false }
|
||||
sp-inherents = { version = "2.0", default-features = false }
|
||||
sp-finality-grandpa = { version = "2.0", default-features = false }
|
||||
sp-offchain = { version = "2.0", default-features = false }
|
||||
sp-runtime = { version = "2.0", default-features = false }
|
||||
sp-session = { version = "2.0", default-features = false }
|
||||
sp-std = { version = "2.0", default-features = false }
|
||||
sp-transaction-pool = { version = "2.0", default-features = false }
|
||||
sp-trie = { version = "2.0", default-features = false }
|
||||
sp-version = { version = "2.0", default-features = false }
|
||||
frame-executive = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-balances = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-sudo = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-timestamp = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-api = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-block-builder = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-inherents = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-offchain = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-session = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-std = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-transaction-pool = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-trie = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
sp-version = { git = "https://github.com/paritytech/substrate.git", branch = "master" , default-features = false }
|
||||
|
||||
[build-dependencies]
|
||||
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "2.0.0" }
|
||||
|
||||
@@ -282,8 +282,7 @@ parameter_types! {
|
||||
}
|
||||
|
||||
impl pallet_transaction_payment::Trait for Runtime {
|
||||
type Currency = pallet_balances::Module<Runtime>;
|
||||
type OnTransactionPayment = ();
|
||||
type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, ()>;
|
||||
type TransactionByteFee = TransactionByteFee;
|
||||
type WeightToFee = IdentityFee<Balance>;
|
||||
type FeeMultiplierUpdate = ();
|
||||
|
||||
Reference in New Issue
Block a user