Fix transaction payment runtime api companion (#1519)

* Fix transaction payment runtime api companion

Companion for Substrate pr: https://github.com/paritytech/substrate/pull/6792

* 'Update substrate'

Co-authored-by: parity-processbot <>
This commit is contained in:
Bastian Köcher
2020-08-03 11:06:03 +02:00
committed by GitHub
parent 94a6d6e65a
commit 277fd75179
13 changed files with 203 additions and 237 deletions
-3
View File
@@ -153,7 +153,6 @@ pub fn run() -> Result<()> {
service::new_chain_ops::<
service::kusama_runtime::RuntimeApi,
service::KusamaExecutor,
service::kusama_runtime::UncheckedExtrinsic,
>(config)
)
} else if chain_spec.is_westend() {
@@ -161,7 +160,6 @@ pub fn run() -> Result<()> {
service::new_chain_ops::<
service::westend_runtime::RuntimeApi,
service::WestendExecutor,
service::westend_runtime::UncheckedExtrinsic,
>(config)
)
} else {
@@ -169,7 +167,6 @@ pub fn run() -> Result<()> {
service::new_chain_ops::<
service::polkadot_runtime::RuntimeApi,
service::PolkadotExecutor,
service::polkadot_runtime::UncheckedExtrinsic,
>(config)
)
}