Giter Site home page Giter Site logo

paritytech / subport Goto Github PK

View Code? Open in Web Editor NEW
81.0 14.0 14.0 1002 KB

Parity Substrate(-based) chains usage and development support

Home Page: https://docs.substrate.io

License: Apache License 2.0

Rust 100.00%
substrate substrate-node substrate-runtime parity-substrate parity parity-node blockchain support help issues

subport's Introduction

Subport

Substrate(-based) chains usage and development support

How to get the Support you Need:

📖 Read our Docs & Try our Tutorials

👪 Join the Substrate StackExchange for Support

  • The community there is amazing and very helpful! You will find all the Parity team members and the larger community that can help troubleshoot your problems.
  • Please first search 👀 for your question or error on StackExchange
    • If you don't find a solution, then please post a new one!
  • For more broad problems, first search 👀 in both open and closed issues, then if you can't find an answer, please report them here by opening an issue

💡 Start a discussion on general usage questions and feature requests

subport's People

Contributors

al3mart avatar alexd10s avatar dependabot[bot] avatar gnunicorn avatar jimmychu0807 avatar nukemandan avatar shawntabrizi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

subport's Issues

payment_queryInfo return parse error

Hi I call rpc method payment_queryInfo via http
return Parse error
curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "payment_queryInfo", "params":['0x9c040503fc67115e2d343b0572812c50a643a2ed25f1ddd3aa9f9481e707b05bc24761680284d717','0x111947576c3a4c72a31a00a230bd4e19548177988a4626cef5055ca7a9a5eb00']}' http://localhost:9933
{"jsonrpc":"2.0","error":{"code":-32700,"message":"Parse error"},"id":null}
https://polkadot.js.org/apps works well
image
polkadot version: polkadot 0.8.25-3094e8d2-x86_64-linux-gnu
startcommand: ./polkadot --base-path=xx --ws-external --rpc-external --chain polkadot --name "XX"

Unable to create private network on alpha.6

@danforbes and I were updating the private network tutorial to alpha.6 (from alpha.5). There are relatively few cli-breaking changes between the two version and we were expecting to just update the --telemetry-url syntax. However we ran into problems.

I start the first node according to this proceedure and it starts as expected.

$ ./target/release/node-template   --base-path /tmp/node01   --chain=./customSpecRaw.json   --port 30333   --ws-port 9944   --rpc-port 9933   --telemetry-url 'ws://telemetry.polkadot.io:1024 0'   --validator   --name MyNode01
2020-04-15 17:20:44 Substrate Node
2020-04-15 17:20:44 ✌️  version 2.0.0-alpha.6-c1b33f8-x86_64-linux-gnu
2020-04-15 17:20:44 ❤️  by Anonymous, 2017-2020
2020-04-15 17:20:44 📋 Chain specification: Local Testnet
2020-04-15 17:20:44 🏷  Node name: MyNode01
2020-04-15 17:20:44 👤 Role: AUTHORITY
2020-04-15 17:20:44 ⛓  Native runtime: node-template-1:1(node-template-1)
2020-04-15 17:20:44 🔨 Initializing Genesis block/state (state: 0xb132…57f2, header-hash: 0xf437…e7fe)
2020-04-15 17:20:44 👴 Loading GRANDPA authority set from genesis on what appears to be first startup.
2020-04-15 17:20:44 ⏱ Loaded block-time = 6000 milliseconds from genesis on first-launch
2020-04-15 17:20:44 📦 Highest known block at #0
2020-04-15 17:20:44 Using default protocol ID "sup" because none is configured in the chain specs
2020-04-15 17:20:44 🏷  Local node identity is: QmcKnjBQ28RBZveFNPE3XFurorXGoNGhjV5PmiiUFsuKFZ
2020-04-15 17:20:44 〽 Prometheus server started at 127.0.0.1:9615
2020-04-15 17:20:49 💤 Idle (0 peers), best: #0 (0xf437…e7fe), finalized #0 (0xf437…e7fe), ⬇ 0.7kiB/s ⬆ 0.7kiB/s
2020-04-15 17:20:54 💤 Idle (0 peers), best: #0 (0xf437…e7fe), finalized #0 (0xf437…e7fe), ⬇ 0.2kiB/s ⬆ 0.2kiB/s
2020-04-15 17:20:59 💤 Idle (0 peers), best: #0 (0xf437…e7fe), finalized #0 (0xf437…e7fe), ⬇ 0.2kiB/s ⬆ 0.2kiB/s
2020-04-15 17:21:04 💤 Idle (0 peers), best: #0 (0xf437…e7fe), finalized #0 (0xf437…e7fe), ⬇ 0.2kiB/s ⬆ 0.2kiB/s

Then we try to start the second node according to this proceedure. The node starts briefly but crashes with.

$ ./target/release/node-template   --base-path /tmp/node02   --chain=./customSpecRaw.json   --port 30334   --ws-port 9945   --rpc-port 9934   --telemetry-url 'ws://telemetry.polkadot.io:1024 0'   --validator   --name MyNode02   --bootnodes /ip4/127.0.0.1/tcp/30333/p2p/QmcKnjBQ28RBZveFNPE3XFurorXGoNGhjV5PmiiUFsuKFZ
2020-04-15 17:22:03 Substrate Node
2020-04-15 17:22:03 ✌️  version 2.0.0-alpha.6-c1b33f8-x86_64-linux-gnu
2020-04-15 17:22:03 ❤️  by Anonymous, 2017-2020
2020-04-15 17:22:03 📋 Chain specification: Local Testnet
2020-04-15 17:22:03 🏷  Node name: MyNode02
2020-04-15 17:22:03 👤 Role: AUTHORITY
2020-04-15 17:22:03 ⛓  Native runtime: node-template-1:1(node-template-1)
2020-04-15 17:22:03 🔨 Initializing Genesis block/state (state: 0xb132…57f2, header-hash: 0xf437…e7fe)
2020-04-15 17:22:03 👴 Loading GRANDPA authority set from genesis on what appears to be first startup.
2020-04-15 17:22:03 ⏱ Loaded block-time = 6000 milliseconds from genesis on first-launch
2020-04-15 17:22:03 📦 Highest known block at #0
2020-04-15 17:22:03 Using default protocol ID "sup" because none is configured in the chain specs
Error: Service(Network(The same bootnode (`/ip4/127.0.0.1/tcp/30333`) is registered with two different peer ids: `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` and `QmcKnjBQ28RBZveFNPE3XFurorXGoNGhjV5PmiiUFsuKFZ`))

I'm not familiar with that error message, but got the same error message reliably on my system. Worth noting Dan did not get this message on his system.

Wondering what the two PeerIds reported were, I tried to use the other (first) PeerId and got this message.

$ ./target/release/node-template   --base-path /tmp/node02   --chain=./customSpecRaw.json   --port 30334   --ws-port 9945   --rpc-port 9934   --telemetry-url 'ws://telemetry.polkadot.io:1024 0'   --validator   --name MyNode02   --bootnodes /ip4/127.0.0.1/tcp/30333/p2p/QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr
2020-04-15 17:22:28 Substrate Node
2020-04-15 17:22:28 ✌️  version 2.0.0-alpha.6-c1b33f8-x86_64-linux-gnu
2020-04-15 17:22:28 ❤️  by Anonymous, 2017-2020
2020-04-15 17:22:28 📋 Chain specification: Local Testnet
2020-04-15 17:22:28 🏷  Node name: MyNode02
2020-04-15 17:22:28 👤 Role: AUTHORITY
2020-04-15 17:22:28 ⛓  Native runtime: node-template-1:1(node-template-1)
2020-04-15 17:22:28 📦 Highest known block at #0
2020-04-15 17:22:28 Using default protocol ID "sup" because none is configured in the chain specs
2020-04-15 17:22:28 🏷  Local node identity is: QmP4xj1XJSW8gikvbkSJFe8nN9eNFofRzfdqkoJDMKG59q
2020-04-15 17:22:28 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:28 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:28 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:29 🔍 Discovered new external address for our node: /ip4/192.168.0.189/tcp/30334/p2p/12D3KooWRSFM1Mfgq9DmPyCYMhwifZsx3Zb858xU1mQCJFiCds9y
2020-04-15 17:22:29 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:29 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:29 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:31 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:31 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:31 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:33 💤 Idle (1 peers), best: #0 (0xf437…e7fe), finalized #0 (0xf437…e7fe), ⬇ 1.3kiB/s ⬆ 1.4kiB/s
2020-04-15 17:22:35 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.
2020-04-15 17:22:35 💔 Invalid peer ID from bootnode, expected `QmetSZcfE7wSfvfVTdY1r2y9EViKuDB6DvLzp476bA1Tmr` at address `/ip4/127.0.0.1/tcp/30333`.

This 💔 Invalid peer ID from bootnode is the message that Dan got.

duplicate lang item in crate `sp_io`

While I'm adding pallet_staking I've to use impls.rs and use the CurrencyToVoteHandler
impls.rs:

use node_primitives::Balance;
use sp_runtime::traits::Convert;
use crate::{Balances};
pub struct CurrencyToVoteHandler;

impl CurrencyToVoteHandler {
	fn factor() -> Balance { (Balances::total_issuance() / u64::max_value() as Balance).max(1) }
}

impl Convert<Balance, u64> for CurrencyToVoteHandler {
	fn convert(x: Balance) -> u64 { (x / Self::factor()) as u64 }
}

impl Convert<u128, Balance> for CurrencyToVoteHandler {
	fn convert(x: u128) -> Balance { x * Self::factor() }
}

As soon as i add this line

pub mod impls;

to

runtime/src/lib.rs

I get the following error:

duplicate lang item in crate `sp_io` (which `sp_application_crypto` depends on): `panic_impl`.
  |
  = note: the lang item is first defined in crate `sp_io` (which `frame_support` depends on)

error: duplicate lang item in crate `sp_io` (which `sp_application_crypto` depends on): `oom`.
  |
  = note: the lang item is first defined in crate `sp_io` (which `frame_support` depends on)

Here's my runtime/Cargo.toml

[dependencies.aura]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-aura'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.balances]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-balances'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.3.0'

[dependencies.frame-executive]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.frame-support]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.pallet-staking]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.grandpa]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-grandpa'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.randomness-collective-flip]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-randomness-collective-flip'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.serde]
features = ['derive']
optional = true
version = '1.0.101'

[dependencies.sp-api]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-block-builder]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-consensus-aura]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '0.8.0-rc3'

[dependencies.sp-core]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-inherents]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-io]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-offchain]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-runtime]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-session]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-std]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-transaction-pool]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sp-version]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.sudo]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-sudo'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.system]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'frame-system'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.template]
default-features = false
package = 'pallet-template'
path = '../pallets/template'
version = '2.0.0-rc3'

[dependencies.timestamp]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-timestamp'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.pallet-treasury]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'


[dependencies.transaction-payment]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'pallet-transaction-payment'
tag = 'v2.0.0-rc3'
version = '2.0.0-rc3'

[dependencies.node-primitives]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
version = '2.0.0-rc3'

[build-dependencies.wasm-builder-runner]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-wasm-builder-runner'
tag = 'v2.0.0-rc3'
version = '1.0.5'

[package]
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
edition = '2018'
homepage = 'https://substrate.io'
license = 'Unlicense'
name = 'node-template-runtime'
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
version = '2.0.0-rc3'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']

[features]
default = ['std']
std = [
    'aura/std',
    'balances/std',
    'codec/std',
    'frame-executive/std',
    'frame-support/std',
    'grandpa/std',
    'randomness-collective-flip/std',
    'serde',
    'sp-api/std',
    'sp-block-builder/std',
    'sp-consensus-aura/std',
    'sp-core/std',
    'sp-inherents/std',
    'sp-io/std',
    'sp-offchain/std',
    'sp-runtime/std',
    'sp-session/std',
    'sp-std/std',
    'sp-transaction-pool/std',
    'sp-version/std',
    'sudo/std',
    'system/std',
    'timestamp/std',
    'transaction-payment/std',
    'template/std',
    'node-primitives/std',
    'pallet-staking/std',
    'pallet-treasury/std',
]

Impossible to structure runtime

I apply this patch to substrate v2.0.0:

diff --git a/primitives/io/src/lib.rs b/primitives/io/src/lib.rs
index 382a0c4b3..a3fe0544b 100644
--- a/primitives/io/src/lib.rs
+++ b/primitives/io/src/lib.rs
@@ -89,12 +89,7 @@ pub trait Storage {
                self.storage(key).map(|s| s.to_vec())
        }

-       /// Get `key` from storage, placing the value into `value_out` and return the number of
-       /// bytes that the entry in storage has beyond the offset or `None` if the storage entry
-       /// doesn't exist at all.
-       /// If `value_out` length is smaller than the returned length, only `value_out` length bytes
-       /// are copied into `value_out`.
-       fn read(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
+       fn read_impl(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
                self.storage(key).map(|value| {
                        let value_offset = value_offset as usize;
                        let data = &value[value_offset.min(value.len())..];
@@ -102,6 +97,16 @@ pub trait Storage {
                        value_out[..written].copy_from_slice(&data[..written]);
                        data.len() as u32
                })
+
+       }
+
+       /// Get `key` from storage, placing the value into `value_out` and return the number of
+       /// bytes that the entry in storage has beyond the offset or `None` if the storage entry
+       /// doesn't exist at all.
+       /// If `value_out` length is smaller than the returned length, only `value_out` length bytes
+       /// are copied into `value_out`.
+       fn read(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
+               self.read_impl(key, value_out, value_offset)
        }

        /// Set `key` to `value` in the storage.

After this it does not compile:

error[E0599]: no method named `read_impl` found for reference `&&mut dyn storage::proc_macro_runtime_interface::Externalities` in the current scope
   --> primitives/io/src/lib.rs:109:8
    |
109 |         self.read_impl(key, value_out, value_offset)
    |              ^^^^^^^^^ method not found in `&&mut dyn storage::proc_macro_runtime_interface::Externalities`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0599`.
error: could not compile `sp-io`

To learn more, run the command again with --verbose.

Then I try another way:

diff --git a/primitives/io/src/lib.rs b/primitives/io/src/lib.rs
index 382a0c4b3..a3fe0544b 100644
--- a/primitives/io/src/lib.rs
+++ b/primitives/io/src/lib.rs
@@ -89,12 +89,7 @@ pub trait Storage {
                self.storage(key).map(|s| s.to_vec())
        }

-       /// Get `key` from storage, placing the value into `value_out` and return the number of
-       /// bytes that the entry in storage has beyond the offset or `None` if the storage entry
-       /// doesn't exist at all.
-       /// If `value_out` length is smaller than the returned length, only `value_out` length bytes
-       /// are copied into `value_out`.
-       fn read(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
+       fn read_impl(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
                self.storage(key).map(|value| {
                        let value_offset = value_offset as usize;
                        let data = &value[value_offset.min(value.len())..];
@@ -102,6 +97,16 @@ pub trait Storage {
                        value_out[..written].copy_from_slice(&data[..written]);
                        data.len() as u32
                })
+
+       }
+
+       /// Get `key` from storage, placing the value into `value_out` and return the number of
+       /// bytes that the entry in storage has beyond the offset or `None` if the storage entry
+       /// doesn't exist at all.
+       /// If `value_out` length is smaller than the returned length, only `value_out` length bytes
+       /// are copied into `value_out`.
+       fn read(&self, key: &[u8], value_out: &mut [u8], value_offset: u32) -> Option<u32> {
+               storage::read_impl(key, value_out, value_offset)
        }

        /// Set `key` to `value` in the storage.

It compiles but fails the tests:

---- storage::types::value::test::test stdout ----
thread 'storage::types::value::test::test' panicked at 'already borrowed: BorrowMutError', /home/porton/.cargo/registry/src/github.com-1ecc6299db9ec823/environmental-1.1.2/src/lib.rs:143:41

---- storage::types::map::test::test stdout ----
thread 'storage::types::map::test::test' panicked at 'already borrowed: BorrowMutError', /home/porton/.cargo/registry/src/github.com-1ecc6299db9ec823/environmental-1.1.2/src/lib.rs:143:41

---- storage::types::double_map::test::test stdout ----
thread 'storage::types::double_map::test::test' panicked at 'already borrowed: BorrowMutError', /home/porton/.cargo/registry/src/github.com-1ecc6299db9ec823/environmental-1.1.2/src/lib.rs:143:41

This example shows that there is no (at least obvious) way to extract a part of a runtime function into a separate function (what may be necessary to factor out code of two similar functions into a third function). That's bad. What to do now?

Block producing stopped after upgrading through wasm

i did upgrade the chain as the follow steps:
1.Tracked substrate new version
2.Changed my own runtime logic,including modifing storage field, storage key hasher and so on
3.Changed the spec version and impl_version
4.Built a runtime wasm blob file and node binary file
5.Stopped old nodes and restarted the nodes through new binary file
6.Using sudo system.setCode to update runtime
After i finished all these steps, the chain stopped to produce block after a short while.Am i right to upgrade runtime online as so?Or what are the correct steps?

[question] Parity ether and substrate compatibility inquiry

As a sidechain, I am currently using parity ether poa below link. Is it compatible with substate and parity ether? I am wondering if it is possible to use the substrate chain offchain worker to get data through http request from a specific site, then confirm the block and send the data to the parity ether main chain. I would appreciate it if you could tell me how to do it. If you have an example source, it would be okay if you let me know.

构建windows10下的Ubuntu子系统环境设置碰到问题

1

info: profile set to 'default'
info: setting default host triple to x86_64-unknown-linux-gnu
info: syncing channel updates for 'nightly-x86_64-unknown-linux-gnu'
503.7 KiB / 503.7 KiB (100 %) 318.5 KiB/s in 1s ETA: 0s
info: latest update on 2020-08-07, rust version 1.47.0-nightly (71f8d0c8f 2020-08-06)
warning: Force-skipping unavailable component 'rustfmt-x86_64-unknown-linux-gnu'
info: downloading component 'cargo'
5.1 MiB / 5.1 MiB (100 %) 348.8 KiB/s in 19s ETA: 0s
info: downloading component 'clippy'
2.2 MiB / 2.2 MiB (100 %) 156.8 KiB/s in 12s ETA: 0s
info: downloading component 'rust-docs'
12.9 MiB / 12.9 MiB (100 %) 281.6 KiB/s in 39s ETA: 0s
info: downloading component 'rust-std'
20.6 MiB / 20.6 MiB (100 %) 153.6 KiB/s in 1m 47s ETA: 0s
info: downloading component 'rustc'
51.0 MiB / 51.0 MiB (100 %) 307.2 KiB/s in 2m 19s ETA: 0s
info: installing component 'cargo'
info: Defaulting to 500.0 MiB unpack ram
thread 'main' panicked at 'assertion failed: (left == right)
left: 22,
right: 4', src/libstd/sys/unix/thread.rs:179:21
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
thread 'main' panicked at 'assertion failed: (left == right)
left: 22,
right: 4', src/libstd/sys/unix/thread.rs:179:21
stack backtrace:
0: 0x7f3ec60daffd - backtrace::backtrace::libunwind::trace::h812748238d609e46
at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/libunwind.rs:86
1: 0x7f3ec60daffd - backtrace::backtrace::trace_unsynchronized::h7c97e818aebf09c8
at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.46/src/backtrace/mod.rs:66
2: 0x7f3ec60daffd - std::sys_common::backtrace::_print_fmt::h60d914263b0ccd71
at src/libstd/sys_common/backtrace.rs:78
3: 0x7f3ec60daffd - <std::sys_common::backtrace::_print::DisplayBacktrace as core::fmt::Display>::fmt::hf78227137afc7565
at src/libstd/sys_common/backtrace.rs:59
4: 0x7f3ec5d6524c - core::fmt::write::h543cdf60775f89bf
at src/libcore/fmt/mod.rs:1069
5: 0x7f3ec60da904 - std::io::Write::write_fmt::h0c7f3ce24c679426
at src/libstd/io/mod.rs:1504
6: 0x7f3ec60da105 - std::sys_common::backtrace::print::h80e55e24be231368
at src/libstd/sys_common/backtrace.rs:62
7: 0x7f3ec60da105 - std::sys_common::backtrace::print::h3b197b9c1261c865
at src/libstd/sys_common/backtrace.rs:49
8: 0x7f3ec60da105 - std::panicking::default_hook::{{closure}}::ha6c807149ce20f8f
at src/libstd/panicking.rs:198
9: 0x7f3ec60d98f4 - std::panicking::default_hook::he49a9c12e358cc45
at src/libstd/panicking.rs:218
10: 0x7f3ec60d93b6 - std::panicking::rust_panic_with_hook::h93f74f5ef2f71f31
at src/libstd/panicking.rs:515
11: 0x7f3ec60d9198 - rust_begin_unwind
at src/libstd/panicking.rs:419
12: 0x7f3ec60d9140 - std::panicking::begin_panic_fmt::hfa6ef29ba81f400e
at src/libstd/panicking.rs:373
13: 0x7f3ec6011671 - <rustup::diskio::threaded::Threaded as rustup::diskio::Executor>::join::habf6ee901a47a8a4
14: 0x7f3ec6010c78 - core::ptr::drop_in_place::h0b1b0dcb4b07c267
15: 0x7f3ec5f76c40 - core::ptr::drop_in_place::h09572fbec04e583f
16: 0x7f3ec602842e - rustup::dist::component::package::unpack_without_first_dir::h99f4b0c2cae349ff
17: 0x7f3ec5fe559f - rustup::dist::manifestation::Manifestation::update::hacf67fad3b44f03a
18: 0x7f3ec5fd563c - rustup::dist::dist::update_from_dist
::h1462627f9c58c494
19: 0x7f3ec5fd227a - rustup::install::InstallMethod::install::hbb6430b2dfaf5792
20: 0x7f3ec5fd0d21 - rustup::toolchain::DistributableToolchain::install_from_dist::h7b9bf9317c9aa2c5
21: 0x7f3ec60c5aa2 - rustup::cli::self_update::install::h8ca0f61a773526a9
22: 0x7f3ec60cbd3d - rustup::cli::setup_mode::main::h4d335e1871435d70
23: 0x7f3ec5cdf42a - rustup_init::main::h22da971c634937a2
24: 0x7f3ec60f3e83 - std::rt::lang_start_internal::{{closure}}::{{closure}}::h4ed4ab1fb893cc93
at src/libstd/rt.rs:52
25: 0x7f3ec60f3e83 - std::sys_common::backtrace::__rust_begin_short_backtrace::h1f01c818c00c4f70
at src/libstd/sys_common/backtrace.rs:130
26: 0x7f3ec5ce053f - main
27: 0x7f3ec59270b3 - __libc_start_main
28: 0x7f3ec5cdb029 -
thread panicked while panicking. aborting.
Illegal instruction (core dumped)
root@DESKTOP-0CAOE9T:/mnt/d/rust#

Migration with upgraded OpaqueKeys

Guys. I have a problem with migration to new version of runtime, where i changed OpaqueKeys struct (had two modules in old struct, now three).

Problem: queuedKeys storage have validator with key 0x00000...0. New added module don't work.
And I can't to update keys in on_runtime_upgrade() because session storage is private and session pallet module don't have public methods to work with it.

What is a correct way to do migration with upgraded OpaqueKeys?

[question] how do we implement the treasury template

Sorry guys
here's what i've tried

parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
	pub const ProposalBondMinimum: Balance = 1 * DOLLARS;
	pub const SpendPeriod: BlockNumber = 1 * DAYS;
	pub const Burn: Permill = Permill::from_percent(50);
	pub const TipCountdown: BlockNumber = 1 * DAYS;
	pub const TipFindersFee: Percent = Percent::from_percent(20);
	pub const TipReportDepositBase: Balance = 1 * DOLLARS;
	pub const TipReportDepositPerByte: Balance = 1 * CENTS;
	pub const TreasuryModuleId: ModuleId = ModuleId(*b"py/trsry");
}

impl pallet_treasury::Trait for Runtime {
	type ModuleId = TreasuryModuleId;
	type Currency = Balances;
	type ApproveOrigin = EnsureOrigin<Self::Origin, Success = AccountId>;
	type RejectOrigin = EnsureOrigin<Self::Origin, Success = AccountId>;
	type Tippers = Elections;
	type TipCountdown = TipCountdown;
	type TipFindersFee = TipFindersFee;
	type TipReportDepositBase = TipReportDepositBase;
	type TipReportDepositPerByte = TipReportDepositPerByte;
	type Event = Event;
	type ProposalRejection = ();
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
}

It gives me the following error

 the size for values of type `(dyn sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin<Origin, Success = sp_api_hidden_includes_construct_runtime::hidden_include::sp_runtime::AccountId32> + 'static)` cannot be known at compilation time
   --> /home/noone/staschak/substrate-node-template/runtime/src/lib.rs:319:22
    |
319 |     type RejectOrigin = EnsureOrigin<Self::Origin, Success = AccountId>;
    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    | 
   ::: /home/noone/.cargo/git/checkouts/substrate-7e08433d4c370a21/34695a8/frame/treasury/src/lib.rs:125:5
    |
125 |     type RejectOrigin: EnsureOrigin<Self::Origin>;
    |     ---------------------------------------------- required by this bound in `pallet_treasury::Trait`
    |
    = help: the trait `core::marker::Sized` is not implemented for `(dyn sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin<Origin, Success = sp_api_hidden_includes_construct_runtime::hidden_include::sp_runtime::AccountId32> + 'static)`
    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>

error[E0038]: the trait `sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin` cannot be made into an object
    --> /home/noone/staschak/substrate-node-template/runtime/src/lib.rs:318:2
     |
318  |     type ApproveOrigin = EnsureOrigin<Self::Origin, Success = AccountId>;
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin` cannot be made into an object
     | 
    ::: /home/noone/.cargo/git/checkouts/substrate-7e08433d4c370a21/34695a8/frame/support/src/traits.rs:1537:8
     |
1537 |     fn ensure_origin(o: OuterOrigin) -> result::Result<Self::Success, BadOrigin> {
     |        ------------- the trait cannot be made into an object because associated function `ensure_origin` has no `self` parameter
...
1541 |     fn try_origin(o: OuterOrigin) -> result::Result<Self::Success, OuterOrigin>;
     |        ---------- the trait cannot be made into an object because associated function `try_origin` has no `self` parameter

error[E0038]: the trait `sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin` cannot be made into an object
    --> /home/noone/staschak/substrate-node-template/runtime/src/lib.rs:319:2
     |
319  |     type RejectOrigin = EnsureOrigin<Self::Origin, Success = AccountId>;
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `sp_api_hidden_includes_construct_runtime::hidden_include::traits::EnsureOrigin` cannot be made into an object
     | 
    ::: /home/noone/.cargo/git/checkouts/substrate-7e08433d4c370a21/34695a8/frame/support/src/traits.rs:1537:8
     |
1537 |     fn ensure_origin(o: OuterOrigin) -> result::Result<Self::Success, BadOrigin> {
     |        ------------- the trait cannot be made into an object because associated function `ensure_origin` has no `self` parameter
...
1541 |     fn try_origin(o: OuterOrigin) -> result::Result<Self::Success, OuterOrigin>;
     |        ---------- the trait cannot be made into an object because associated function `try_origin` has no `self` parameter

error: aborting due to 3 previous errors; 2 warnings emitted

Panic on updated node after a runtime upgrade

It was detected in NodleCode/chain#19 that we had messed up our node code during a refactoring attempt, this was fixed in NodleCode/chain#20.

Up until deploying the associated runtime upgrade both versions of the node were able to sync correctly. However after deploying the upgrade we are not able to full sync the updated node, indeed it panics with a message like this:

Hash: given=bbc736cd9484e3ea6a3697eb06900272093a63691bdb28bd4cad63058fb527e5, expected=0826fde67c866d994469a239880a92a8273957160bb7c7324f17e7c54ffa6745

====================

Version: 2.0.0-493097c-x86_64-macos

   0: backtrace::backtrace::trace
   1: backtrace::capture::Backtrace::new
   2: sp_panic_handler::set::{{closure}}
   3: std::panicking::rust_panic_with_hook
   4: std::panicking::begin_panic
   5: frame_executive::Executive<System,Block,Context,UnsignedValidator,AllModules>::execute_block
   6: <nodle_chain_runtime::Runtime as sp_api::runtime_decl_for_Core::Core<sp_runtime::generic::block::Block<sp_runtime::generic::header::Header<u32,sp_runtime::traits::BlakeTwo256>,sp_runtime::generic::unchecked_extrinsic::UncheckedExtrinsic<<pallet_indices::Module<nodle_chain_runtime::Runtime> as sp_runtime::traits::StaticLookup>::Source,nodle_chain_runtime::Call,sp_runtime::MultiSignature,(frame_system::CheckVersion<nodle_chain_runtime::Runtime>, frame_system::CheckGenesis<nodle_chain_runtime::Runtime>, frame_system::CheckEra<nodle_chain_runtime::Runtime>, frame_system::CheckNonce<nodle_chain_runtime::Runtime>, frame_system::CheckWeight<nodle_chain_runtime::Runtime>, pallet_transaction_payment::ChargeTransactionPayment<nodle_chain_runtime::Runtime>)>>>>::execute_block
   7: sp_api::runtime_decl_for_Core::execute_block_native_call_generator::{{closure}}
   8: std::panicking::try::do_call
   9: __rust_maybe_catch_panic
  10: std::thread::local::LocalKey<T>::with
  11: std::thread::local::LocalKey<T>::with
  12: sp_state_machine::StateMachine<B,H,N,Exec>::execute_aux
  13: <sc_client::call_executor::LocalCallExecutor<B,E> as sc_client_api::call_executor::CallExecutor<Block>>::contextual_call
  14: <sc_client::client::Client<B,E,Block,RA> as sp_api::CallApiAt<Block>>::call_api_at
  15: sp_api::runtime_decl_for_Core::execute_block_call_api_at
  16: sp_api::Core::execute_block
  17: <&sc_client::client::Client<B,E,Block,RA> as sp_consensus::block_import::BlockImport<Block>>::import_block
  18: <sc_finality_grandpa::import::GrandpaBlockImport<BE,Block,Client,SC> as sp_consensus::block_import::BlockImport<Block>>::import_block
  19: <sc_consensus_babe::BabeBlockImport<Block,Client,Inner> as sp_consensus::block_import::BlockImport<Block>>::import_block
  20: sp_consensus::import_queue::import_single_block
  21: <futures_util::future::poll_fn::PollFn<F> as core::future::future::Future>::poll
  22: futures_util::future::future::chain::Chain<Fut1,Fut2,Data>::poll
  23: <futures_util::future::poll_fn::PollFn<F> as core::future::future::Future>::poll
  24: futures_executor::thread_pool::PoolState::work
  25: std::sys_common::backtrace::__rust_begin_short_backtrace
  26: std::panicking::try::do_call
  27: __rust_maybe_catch_panic
  28: core::ops::function::FnOnce::call_once{{vtable.shim}}
  29: <alloc::boxed::Box<F> as core::ops::function::FnOnce<A>>::call_once
  30: std::sys::unix::thread::Thread::new::thread_start
  31: _pthread_start


Thread 'import-queue-worker-0' panicked at 'Storage root must match that calculated.', <::std::macros::panic macros>:2

This is a bug. Please report it at:

	https://github.com/NodleCode/chain/issues

2020-04-03 12:20:10 Block prepare storage changes error:
Execution(RuntimePanicked("Storage root must match that calculated."))

I searched for similar issues and they were referring to a previous bug in substrate that was fixed. I believe this is due to our changes previously mentioned but ain't sure what to do to fix the node / network.

For now we are able to sync the network with an older node and then switch to an upgraded node, in this case things will work fine.

[error] sp-arithmetic v2.0.0 build

hi
when node-template build, i got below error. The build was successful so far, but it looks like an error occurred after installing cargo newly.
Version problem?

cargo version : cargo 1.48.0-nightly (9d1a4863a 2020-10-05)
rustc version : rustc 1.49.0-nightly (38d911dfc 2020-10-09)

Compiling sp-arithmetic v2.0.0 (/node_daemon_server/primitives/arithmetic)
error[E0282]: type annotations needed
--> /node_daemon_server/primitives/arithmetic/src/fixed_point.rs:541:9
|
541 | let accuracy = P::ACCURACY.saturated_into();
| ^^^^^^^^ consider giving accuracy a type
...
1595 | / implement_fixed!(
1596 | | FixedI64,
1597 | | test_fixed_i64,
1598 | | i64,
... |
1601 | | "Fixed Point 64 bits signed, range = [-9223372036.854775808, 9223372036.854775807]",
1602 | | );
| |__- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)

Dynamically call methods of other pallets as callback functions

I am trying to implement a pallet (we call it pallet-handler here), which is similar to a firewall plus a dispatcher.

This pallet receives external extrinsic and dispatches the messages to specific pallets for execution.

Other pallets dynamically register themselves to the pallet-handler and the pallet-handler dispatches messages
according to the registered rules.

Here is a pseudo-code:

pallet-handler:

decl_storage! {
	trait Store for Module<T: Trait> as Handler {
		// A map that records what kind of messages the pallet is interested in.
		Rules: map hasher(blake2_128_concat) u32 => PALLET_A_OR_PALLET_B;
	}
}

decl_module! {
	pub struct Module<T: Trait> for enum Call where origin: T::Origin {
		fn register(origin, message_type: u32, SOME_PALLET: ???) {
			ensure_root(origin)?;
			Rules::insert(message_type, SOME_PALLET);
		}

		fn dispatch(origin, message_type: u32, data: Vec<u8>) {
			ensure_root(origin)?;
                        let PALLET = Rules::get(message_type);
                        let result = PALLET::callback(data);
                        // ...
		}
	}
}

Pallet A:

decl_module! {
	pub struct Module<T: Trait> for enum Call where origin: T::Origin {
		fn callback(origin, data: Vec<u8>) {
			ensure_root(origin)?;
                        // ...
		}
	}
}

Pallet B:

decl_module! {
	pub struct Module<T: Trait> for enum Call where origin: T::Origin {
		fn callback(origin, data: Vec<u8>) {
			ensure_root(origin)?;
                        // ...
		}
	}
}

For example, register(1, PALLET_A) and register(2, PALLET_B) are called, then the handler receives a message of type 1, so the message will be dispatched to pallet A.

How should I design the storage of pallet-handler to achieve this goal?

How do we connect to a private remote substrate node?

Dear substrate,
when I try to connect to my remote node on google cloud. using the telemetry-url ws://telemetry.polkadot.io:1024
Polkadot says "You are not connected to a node. Ensure that your node is running and that the Websocket endpoint is reachable."
How do i set up a secure/insecure websocket endpoint on substrate?
And when i try to connect to the following endpoint
"/ip4/35.223.179.7/tcp/30333/p2p/QmVNEAoh4TFLX2
cNEGogv3Gy8vBHw5ATU7biZYpsdwA14t"
polkadot says the same

I've read the following:
https://wiki.polkadot.network/docs/en/maintain-wss

when i try to setup the nginx server and the server asks me for a domain name: I enter "http://nachtstein.nl""
i get the following error:

An unexpected error occurred:
Error creating new order :: Cannot issue for "\"http": Domain name contains an invalid character

Does anyone know a good tutorial?

Consensus Error on Private Chain Tutorial After Upgrading to alpha.8

I recently upgraded our tutorials to alpha.8 and encountered an error that was logged to the command line when I was following the steps of the tutorial to start a private chain:
2020-05-15 16:05:54 Encountered consensus error: CannotSign([88, 111, 68, 26, 64, 196, 73, 49, 116, 34, 235, 87, 110, 210, 180, 172, 173, 48, 31, 26, 239, 99, 33, 149, 142, 20, 160, 177, 129, 23, 83, 58], "An unknown keystore error occurred: No such file or directory (os error 2)")

I notice this error after starting the second node. Both nodes report an error of the same form, albeit with different values in the CannotSign array. Despite the errors, I still see the nodes finalizing blocks after inserting keys and restarting the nodes. I've gone through the steps of the tutorial a few times and deleted /tmp/node0* between each pass, so I'm pretty sure the error is reproducible and not user error.

errorE0282# type annotations needed & could not compile `sp-arithmetic`

I am following tutorial [Implementing the Contract Trait].
Added code snip to parameter_types! and to imp trait runtime. When I run cargo check -p node-template-runtime receive error:
error[E0282]: type annotations needed
error: could not compile sp-arithmetic
note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)

I've had this error previously and it was due to nightly?

I am using windows not mac..

Extrinsic failed on contract deployment

Dear Substrate
When i try to deploy a contract i get the following notifications

contracts.putCode
inblock
system.ExtrinsicFailed
Other

Furthermore I can't add an endowment
I raised the gas limit to 50000000
substrate version:

v2.0.0-alpha.3

running

substrate-node-template$ cargo run --release -- --dev

deploying the flipper contract

#![cfg_attr(not(feature = "std"), no_std)]

use ink_lang as ink;

#[ink::contract(version = "0.1.0")]
mod flipper {
    use ink_core::storage;

    /// Defines the storage of your contract.
    /// Add new fields to the below struct in order
    /// to add new static storage fields to your contract.
    #[ink(storage)]
    struct Flipper {
        /// Stores a single `bool` value on the storage.
        value: storage::Value<bool>,
    }

    impl Flipper {
        /// Constructor that initializes the `bool` value to the given `init_value`.
        #[ink(constructor)]
        fn new(&mut self, init_value: bool) {
            self.value.set(init_value);
        }

        /// Constructor that initializes the `bool` value to `false`.
        ///
        /// Constructors can delegate to other constructors.
        #[ink(constructor)]
        fn default(&mut self) {
            self.new(false)
        }

        /// A message that can be called on instantiated contracts.
        /// This one flips the value of the stored `bool` from `true`
        /// to `false` and vice versa.
        #[ink(message)]
        fn flip(&mut self) {
            *self.value = !self.get();
        }

        /// Simply returns the current value of our `bool`.
        #[ink(message)]
        fn get(&self) -> bool {
            *self.value
        }
    }

    /// Unit tests in Rust are normally defined within such a `#[cfg(test)]`
    /// module and test functions are marked with a `#[test]` attribute.
    /// The below code is technically just normal Rust code.
    #[cfg(test)]
    mod tests {
        /// Imports all the definitions from the outer scope so we can use them here.
        use super::*;

        /// We test if the default constructor does its job.
        #[test]
        fn default_works() {
            // Note that even though we defined our `#[ink(constructor)]`
            // above as `&mut self` functions that return nothing we can call
            // them in test code as if they were normal Rust constructors
            // that take no `self` argument but return `Self`.
            let flipper = Flipper::default();
            assert_eq!(flipper.get(), false);
        }

        /// We test a simple use case of our contract.
        #[test]
        fn it_works() {
            let mut flipper = Flipper::new(false);
            assert_eq!(flipper.get(), false);
            flipper.flip();
            assert_eq!(flipper.get(), true);
        }
    }
}

following the instructions of the standard ink smart contract tutorial. I've added the contracts module myself

Runtime upgrade/extrinsic scheduling

It seems useful for future networks that developers are able to schedule the process of upgrades that occur. At the moment it isn't clear what ordering runtime upgrade are processed (maybe they follow the ordering of their position in the construct_runtime! call and maybe not).

Having a way to schedule which modules will run their on_runtime_upgrade hook sounds nice to have especially given it would allow chains, like Edgeware, to catch up to substrate master without jumping through so many hoops.

How to convert sp_consensus_aura::sr25519::app_sr25519::Public to AccountId

Here's how i implement my sessionconfig

		pallet_session: Some(SessionConfig {
			keys: initial_authorities.iter().map(|x| {
				(x.0.clone(), x.0.clone(), session_keys(
					x.0.clone(),
					x.1.clone(),
				))
			}).collect::<Vec<_>>(),
		}),

and here's my error

mismatched types
   --> node/src/chain_spec.rs:130:10
    |
130 |               keys: initial_authorities.iter().map(|x| {
    |  ___________________^
131 | |                 (x.0.clone(), x.0.clone(), session_keys(
132 | |                     x.0.clone(),
133 | |                     x.1.clone(),
134 | |                 ))
135 | |             }).collect::<Vec<_>>(),
    | |__________________________________^ expected struct `sp_core::crypto::AccountId32`, found struct `sp_consensus_aura::sr25519::app_sr25519::Public`
    |
    = note: expected struct `std::vec::Vec<(sp_core::crypto::AccountId32, sp_core::crypto::AccountId32, node_template_runtime::opaque::SessionKeys)>`
               found struct `std::vec::Vec<(sp_consensus_aura::sr25519::app_sr25519::Public, sp_consensus_aura::sr25519::app_sr25519::Public, node_template_runtime::opaque::SessionKeys)>`

error: aborting due to previous error

Heres how the main node implements it

	pallet_session: Some(SessionConfig {
			keys: initial_authorities.iter().map(|x| {
				(x.0.clone(), x.0.clone(), session_keys(
					x.2.clone(),
					x.3.clone(),
					x.4.clone(),
					x.5.clone(),
				))
			}).collect::<Vec<_>>(),
		}),

https://github.com/noahsalvadordenjo/sub

how listen on 0.0.0.0

polkadot --chain polkadot --listen-addr 0.0.0.0
error: Invalid value for '--listen-addr <LISTEN_ADDR>...': invalid multiaddr

[macOS] cargo build failed: `error: unable to load libxcrun`

I want debug with project.but when I compiled. it failed. error info:

Compiling sp-runtime-interface-test v2.0.0-dev (/Users/97mq20180422/rust/github.com/substrate/primitives/runtime-interface/test)
Running CARGO=/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/bin/cargo CARGO_MANIFEST_DIR=/Users/97mq20180422/rust/github.com/substrate/primitives/runtime-interface/test CARGO_PKG_AUTHORS='Parity Technologies <[email protected]>' CARGO_PKG_DESCRIPTION= CARGO_PKG_HOMEPAGE='https://substrate.dev' CARGO_PKG_NAME=sp-runtime-interface-test CARGO_PKG_REPOSITORY='https://github.com/paritytech/substrate/' CARGO_PKG_VERSION=2.0.0-dev CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE=dev DYLD_FALLBACK_LIBRARY_PATH='/Users/97mq20180422/rust/github.com/substrate/target/debug/deps:/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib:/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib:/Users/97mq20180422/lib:/usr/local/lib:/usr/lib' rustc --crate-name sp_runtime_interface_test --edition=2018 primitives/runtime-interface/test/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C debuginfo=2 -C metadata=ce0e37a9b51c19a7 -C extra-filename=-ce0e37a9b51c19a7 --out-dir /Users/97mq20180422/rust/github.com/substrate/target/debug/deps -C incremental=/Users/97mq20180422/rust/github.com/substrate/target/debug/incremental -L dependency=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps --extern sc_executor=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsc_executor-8bbaa80bd2c90ce2.rmeta --extern sp_io=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_io-719d7d016033cfaf.rmeta --extern sp_runtime=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_runtime-fbfd12471da36d1b.rmeta --extern sp_runtime_interface=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_runtime_interface-803301df348c67c9.rmeta --extern sp_runtime_interface_test_wasm=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_runtime_interface_test_wasm-82c484ef79f15702.rmeta --extern sp_runtime_interface_test_wasm_deprecated=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_runtime_interface_test_wasm_deprecated-bbd2e246642d2bef.rmeta --extern sp_state_machine=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsp_state_machine-820ab00a48de3fb5.rmeta -L native=/Users/97mq20180422/rust/github.com/substrate/target/debug/build/backtrace-sys-f0f05074def48782/out -L native=/Users/97mq20180422/rust/github.com/substrate/target/debug/build/substrate-wasmtime-runtime-6d67c0d335e4a020/out -L native=/Users/97mq20180422/rust/github.com/substrate/target/debug/build/zstd-sys-e747b7a764c9ef56/out
error: linking with cc failed: exit code: 1
|
= note: "cc" "-m64" "-L" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.11rw6jtklnbeai1j.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.142ffm2xg1bitlez.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.14igqs6vrrqb8966.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.16l0nknyqfyahbqw.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.18hifji9twi3dfov.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1a4aww9fep6k4u16.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1cmhzu7x3yaa7u64.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1dlrjytn29biw1yj.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1exetp1gdfm4y5l7.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1f3jv555ixx176k4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1fj133h5m9jyds5n.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1gl7vqe7qrad2je7.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1ifsmke524woxpbo.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1iod7hnxa6vbn9nb.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1ioxzju9vkoqi9v8.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1k0ekum5h4aphxgr.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1ksb28djo6vxsfr8.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1na068fjfngb88vq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1pjs0uo5kcahv50a.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1qpbheb7gqdjm680.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1qpq6z19b950j3el.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1qtuz5agde1kg6a3.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1qyxouyvueq0u0gf.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1rtaenyk5nmd7fn9.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1s4o3i2gl91ey0gb.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1wk3t7yrwa9opwtg.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1wscyuri890f6m5o.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1xoeu9c1vrevl1yf.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.1yiymqcub4g301g1.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.20d4bll1mxhhiuez.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.21e553lwhgg090ku.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.246snrqeuug0ha6y.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.27ysycyb28eq9onb.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2f14bae3qapv0lof.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2ibdandmgidhjljs.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2jexrpm3vvenwzm4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2kdu1qhetzqtbdrs.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2l6prs3yktkku3oe.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2n9a15z9nhomeyaz.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2p21h4399vlxdt47.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2sdnck7kstuht7ia.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2w1fyah21nsap0sq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2x38ge2nj1pbm6dk.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.2yhus8uzrxgeosur.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.32qeo08lujj8n6vw.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.35jk4kvtu347n0i4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.35jlswvsqmkle3ty.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3707y04qtqh7u2gd.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.39a3ghghn2lvpz5o.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3a25um5jhc0nqrtx.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3cefcdr1bklqdun6.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3dv28uor094r8vn8.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3eg8dyypos5ahtcs.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3evnsnvg43tg9jho.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3gwer8122qt9ohxg.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3i2703m7yf2rlfxm.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3ig9wm6dtpzrd3cz.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3mrktf3icuma7iub.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3qzyoaxfaa15kor7.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3s3wf5jieb6bj5p2.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3suewdlpahawdqd4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3suka3wlbxgf7i1v.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3txtzmuirfcdvouy.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3vegmbp7la2m33vh.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3vxttona8extb685.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3z6rf8rhmwmwy6jv.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3zp1ztrtzxf7hhjd.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.401f4xo339ykyny4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.407qte95gapns0k7.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.41bkhnfe811v75ak.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.43s7ey47cb1z7c5a.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.45p9du3dz90b6ih5.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.46ksbgwiv23mjfap.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.49m40qtev9jg9cqh.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4b5m4zidk3g40g2u.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4d3xwxkhjktec4ko.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4hop9qxuzz4g51gu.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4hz083hac33yicoh.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4jetr6w2ywc2xjsm.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4kqjr4g7d9ar0s2g.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4lu4xlp73sjhk6lc.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4ma7ertakw7u3cti.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4n28a50x63dwjj6s.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4o9afswyqix7zob4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4r0g2y59c3r0ouw2.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4rjf4na2div8hd5j.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4rq3tj1omfvgsrwo.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4rrpq1m4y5fj3win.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4tj4s2tdyb11oiqr.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4u5aah09pdihtuz4.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.4w91m7icjgchz2hy.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.50pedmlypbkcwfeq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.52t1jpcqfsfcp3zr.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.54xka6jrfebjtyvk.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.56oe8bjmnkwanruo.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.57t69np8ju8066ef.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5awz6bvwv138v6af.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5c3nf6ora5wv1wh8.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5csrpg54z811qrcf.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5dkciojkdxzp8u8w.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5eugfz9l0yrpkvp3.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.5nx3no70pvupirc.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.7bj31mlge660ol0.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.7ocire6umfaqfft.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.d4zrl1s1nqhwfnx.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.exyhh3wj6v8uy4w.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.fpcmg1135z0374x.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.hc0w19a7aorjpdi.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.jf5i4f4zg9fdost.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.jg6cmjq4w338ubq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.jw8tsx473hv6pmq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.k8ye0z3vys91bbz.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.kfuw60isdd2yueo.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.mjesjck4ne3yzm6.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.mx0689fjnfn9cu1.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.nwbckfrz7i7b211.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.p95jrj8qf0u4n9g.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.pe5ut5lj89epd3i.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.rz63hcbu55591fb.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.t6dtwljk8cpnl1c.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.timb2mm9g1a0bmu.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.ug0zlice1inro8l.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.vt926c154m1cyjq.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.wbfbx64ym43iba1.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.wp520expie7udcz.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.zf3zic7b4oymgx8.rcgu.o" "-o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libframe_support_procedural-e890d96141aba354.dylib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.52kjqtpemoq6l54g.rcgu.o" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/frame_support_procedural-e890d96141aba354.3xnhqqz3a2rh87l0.rcgu.o" "-Wl,-dead_strip" "-nodefaultlibs" "-L" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps" "-L" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libframe_support_procedural_tools-ff502aa81ee0bd21.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsyn-35f1c4ac62ecbeb6.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libproc_macro_crate-0061866872e5a8ce.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libtoml-95ce2b73d13715a1.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libserde-e26bfb79c2b0f6b1.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libquote-c3f8106c396bfce5.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libproc_macro2-4b79a81f53c94f5c.rlib" "/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libunicode_xid-52b4fa887e1135de.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libproc_macro-9f497eba7f5a0efd.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libstd-45d9ebb0692ef9e5.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libpanic_unwind-1db0861b57758ac1.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libhashbrown-195b1361fffb4e71.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_alloc-be8a2c1151e5877f.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libbacktrace-345d3c3e8505accf.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libbacktrace_sys-a628fa6d72d56f66.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_demangle-69c5f0ede0a8f17f.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libunwind-4da12c818ea05114.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcfg_if-45e820c53fe712c2.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liblibc-460bbde0fe45ef28.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/liballoc-0230467eab5df242.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/librustc_std_workspace_core-f282378b3428aeae.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcore-cb83c3bcd1eef669.rlib" "/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib/libcompiler_builtins-3c17ed9fb74cb58b.rlib" "-lSystem" "-lresolv" "-lc" "-lm" "-dynamiclib" "-Wl,-dylib"
= note: xcrun: error: unable to load libxcrun (dlopen(/Library/Developer/CommandLineTools/usr/lib/libxcrun.dylib, 5): no suitable image found. Did find:
/Library/Developer/CommandLineTools/usr/lib/libxcrun.dylib: open() failed with errno=13).

error: could not compile frame-support-procedural.
Caused by:
process didn't exit successfully: CARGO=/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/bin/cargo CARGO_MANIFEST_DIR=/Users/97mq20180422/rust/github.com/substrate/frame/support/procedural CARGO_PKG_AUTHORS='Parity Technologies <[email protected]>' CARGO_PKG_DESCRIPTION='Proc macro of Support code for the runtime.' CARGO_PKG_HOMEPAGE='https://substrate.dev' CARGO_PKG_NAME=frame-support-procedural CARGO_PKG_REPOSITORY='https://github.com/paritytech/substrate/' CARGO_PKG_VERSION=2.0.0-alpha.5 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE=alpha.5 DYLD_FALLBACK_LIBRARY_PATH='/Users/97mq20180422/rust/github.com/substrate/target/debug/deps:/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib:/Users/97mq20180422/.rustup/toolchains/nightly-x86_64-apple-darwin/lib:/Users/97mq20180422/lib:/usr/local/lib:/usr/lib' rustc --crate-name frame_support_procedural --edition=2018 frame/support/procedural/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C debuginfo=2 -C metadata=e890d96141aba354 -C extra-filename=-e890d96141aba354 --out-dir /Users/97mq20180422/rust/github.com/substrate/target/debug/deps -C incremental=/Users/97mq20180422/rust/github.com/substrate/target/debug/incremental -L dependency=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps --extern frame_support_procedural_tools=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libframe_support_procedural_tools-ff502aa81ee0bd21.rlib --extern proc_macro2=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libproc_macro2-4b79a81f53c94f5c.rlib --extern quote=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libquote-c3f8106c396bfce5.rlib --extern syn=/Users/97mq20180422/rust/github.com/substrate/target/debug/deps/libsyn-35f1c4ac62ecbeb6.rlib --extern proc_macro (exit code: 1)

2.0发行版编译不成功

Compiling ref-cast-impl v1.0.1
Compiling tracing-attributes v0.1.8
Compiling derive_more v0.99.7
Compiling prost-derive v0.6.1
Compiling paste-impl v0.1.16
Compiling thiserror-impl v1.0.19
Compiling asn1_der_derive v0.1.2
error: failed to run custom build command for node-template-runtime v2.0.0-rc3 (D:\rust\substrate-node-template\runtime)

Caused by:
process didn't exit successfully: D:\rust\substrate-node-template\target\release\build\node-template-runtime-1aff2fac5009a8f3\build-script-build (exit code: 1)
--- stderr
Updating crates.io index
Compiling winapi v0.3.8
Compiling cfg-if v0.1.10
Compiling getrandom v0.1.14
Compiling serde v1.0.114
Compiling proc-macro2 v1.0.18
......

Compiling wasm-gc-api v0.1.11
Compiling rand v0.7.3
Compiling walkdir v2.3.1
Compiling tempfile v3.1.0
Compiling cargo_metadata v0.10.0
Compiling substrate-wasm-builder v1.0.11
Compiling wasm-build-runner-impl v1.0.0 (D:\rust\substrate-node-template\target\release\wbuild-runner\node-template-runtime11269814395992396795)
Finished release [optimized] target(s) in 4m 39s
Running D:\rust\substrate-node-template\target\release\wbuild-runner\node-template-runtime11269814395992396795\target\i686-pc-windows-msvc\release\wasm-build-runner-impl.exe
Rust WASM toolchain not installed, please install it!
error: process didn't exit successfully: D:\rust\substrate-node-template\target\release\wbuild-runner\node-template-runtime11269814395992396795\target\i686-pc-windows-msvc\release\wasm-build-runner-impl.exe (exit code: 1)

warning: build failed, waiting for other jobs to finish...
error: build failed
PS D:\rust\substrate-node-template>

session.setKeys 1010: Invalid Transaction: BadProof

When i send session setKeys extrinsics, get error(session.setKeys 1010: Invalid Transaction: BadProof)

  1. call RPC: author.insertKey(aura & account & granpa )
  2. call RPC: author.rotateKeys, get session public key
  3. send extrinsics: session.setKeys(session public key, 0x00 )

get error: session.setKeys 1010: Invalid Transaction: BadProof)

how can i set session key for validator

Document what is "storage root"

https://docs.rs/sp-io/2.0.0/sp_io/storage/fn.root.html and https://docs.rs/sp-io/2.0.0/sp_io/default_child_storage/fn.root.html don't make clear what is storage root. Please document (in the API docs and in a comment to this issue).

I think, it may mean the place in the "global" storage, where our storage is stored, but then why is it exposed through the runtime_interface? (why do we want that the client (contract) would be able to know this "root"? how a client may use it?)

For default_child_storage it's unclear how a "root" may be associated with an arbitrary storage_key: &[u8]: Doesn't the entire storage has the same root? If not, then how and why? And how can a different root be associated with every possible array of bytes? (It is weird for me why each path in the trie has a different root, please explain.)

Why does event system consume the ownership?

I'm not familiar with rust enough. Right now, if I want to emit two events with same information, I would clone the vars for the first event. I'm not sure whether it's the best practice or not. Is there any suggestion ?

let prev_pk = vec![0];
let curr_pk = vec![1];
Self::deposit_event(RawEvent::ChillSuccess(reporter.clone(), prev_pk));
Self::deposit_event(RawEvent::ABUpgradeSuccess(reporter, curr_pk));

Meanwhile, if a private func need to emit an event, I have to pass the ownership into this function. Even though the business logic might not need the ownership at all.

"Rust WASM toolchain not installed, please install it!" error while building substrate-node-template

When I followed the guide:

https://substrate.dev/docs/en/tutorials/create-your-first-substrate-chain/setup

and compiled substrate, I faced the following error.

% cargo build --release
   Compiling node-template-runtime v2.0.0-rc6 (/Users/xf9x/Documents/github/substrate-node-template/runtime)
   Compiling derive_more v0.99.9
   Compiling dyn-clonable-impl v0.9.0
   Compiling thiserror-impl v1.0.20
   Compiling asn1_der_derive v0.1.2
   Compiling libp2p-core-derive v0.20.1
   Compiling scroll_derive v0.10.2
   Compiling strum_macros v0.16.0
error: failed to run custom build command for `node-template-runtime v2.0.0-rc6 (/Users/xf9x/Documents/github/substrate-node-template/runtime)`

Caused by:
  process didn't exit successfully: `/Users/xf9x/Documents/github/substrate-node-template/target/release/build/node-template-runtime-833ee7d7fff70513/build-script-build` (exit code: 1)
  --- stderr
     Compiling wasm-build-runner-impl v1.0.0 (/Users/xf9x/Documents/github/substrate-node-template/target/release/wbuild-runner/node-template-runtime17855005755133324358)
      Finished release [optimized] target(s) in 0.41s
       Running `/Users/xf9x/Documents/github/substrate-node-template/target/release/wbuild-runner/node-template-runtime17855005755133324358/target/x86_64-apple-darwin/release/wasm-build-runner-impl`
  Rust WASM toolchain not installed, please install it!
warning: build failed, waiting for other jobs to finish...
error: build failed

It was working well before I reinstall rustup. But now, it is not working

Environments

OS

macOS Catalina 10.15.6

rust toolchains

% rustup --version
rustup 1.22.1 (b01adbbc3 2020-07-08)
%cargo --version
cargo 1.46.0 (149022b1d 2020-07-17)
% cargo +nightly --version
cargo 1.48.0-nightly (875e01232 2020-09-08)
% rustup target list --toolchain nightly | grep installed
wasm32-unknown-unknown (installed)
x86_64-apple-darwin (installed)
% rustup show
Default host: x86_64-apple-darwin
rustup home:  /Users/xf9x/.rustup

installed toolchains
--------------------

stable-x86_64-apple-darwin (default)
nightly-x86_64-apple-darwin

installed targets for active toolchain
--------------------------------------

wasm32-unknown-unknown
x86_64-apple-darwin

active toolchain
----------------

stable-x86_64-apple-darwin (default)
rustc 1.46.0 (04488afe3 2020-08-24)

Substrate: on_initialize(), on_finalize() issues. Extrinsics spamming.

I have developed on substrate and I have faced withed some interesting behaviour.
I have the following code of my module:

// The pallet's dispatchable functions.
decl_module! {
    /// The module declaration.
    pub struct Module<T: Trait> for enum Call where origin: T::Origin {
        /// Block initialization
        fn on_initialize(block_number: T::BlockNumber) -> Weight {
            let block_hash = <system::Module<T>>::block_hash(block_number);
            // hash of the previous block
            let parent_hash = <system::Module<T>>::parent_hash();
            // hash of the extrinsics root
            let extrinsics_root = <system::Module<T>>::extrinsics_root();
            debug::info!("on_initialize(), block_number: {:?}, block_hash: {:?}, parent_hash: {:?}, extrinsics_root: {:?}", block_number, block_hash, parent_hash, extrinsics_root);
            0
        }

        /// Block finalization
        fn on_finalize(block_number: T::BlockNumber) {
            let block_hash = <system::Module<T>>::block_hash(block_number);
            // hash of the previous block
            let parent_hash = <system::Module<T>>::parent_hash();
            // hash of the extrinsics root
            let extrinsics_root = <system::Module<T>>::extrinsics_root();
            debug::info!("on_initialize(), block_number: {:?}, block_hash: {:?}, parent_hash: {:?}, extrinsics_root: {:?}", block_number, block_hash, parent_hash, extrinsics_root);
        }

        #[weight = 0]
        pub fn abci_transaction(origin, data: Vec<u8>) -> DispatchResult {
            let _ = ensure_none(origin)?;
            Ok(())
        }
    }
}

So as I assumed on_initialize() function should has been executed ONCE and BEFORE on_finalize() function.
I have been spamming substrate node with the abci_transaction extrinsic.
But I have got the following log:

2020-10-23 11:03:48.118 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.123 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.129 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.130 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.243 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.247 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.255 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.255 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.278 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4
2020-10-23 11:03:48.282 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.290 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.297 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 5 [hash: 0x5f08415120dcd51327713a1d03d1ab00fc96c762e0947536f5c5d34ee4345e54; parent_hash: 0x43e9…5aa4; extrinsics (2): [0x973e…f7ee, 0x35eb…5bb6]]
2020-10-23 11:03:48.399 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.407 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.417 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))

So you can see that:

  1. on_initialize() function has executed more than ONCE.
  2. on_initialize() function for the block 5 has been executed AFTER on_finalize() function. It seems like bug.
  3. during the processing on_initialize() and on_finalize() functions I can not get the block hash of the current block, and extrinsics root hash, returns "0x0000000000000000000000000000000000000000000000000000000000000000".

Maybe someone can comment something on it ?

Here is the full log from the Substrate:

2020-10-23 11:03:19.449 main WARN sc_cli::commands::run_cmd  Running in --dev mode, RPC CORS has been disabled.
2020-10-23 11:03:19.481 main INFO sc_cli::runner  Substrate Node
2020-10-23 11:03:19.482 main INFO sc_cli::runner  ✌️  version 2.0.0-rc6-0f4a618-x86_64-linux-gnu
2020-10-23 11:03:19.482 main INFO sc_cli::runner  ❤️  by Substrate DevHub <https://github.com/substrate-developer-hub>, 2017-2020
2020-10-23 11:03:19.482 main INFO sc_cli::runner  📋 Chain specification: Development
2020-10-23 11:03:19.482 main INFO sc_cli::runner  🏷  Node name: elite-north-0949
2020-10-23 11:03:19.483 main INFO sc_cli::runner  👤 Role: AUTHORITY
2020-10-23 11:03:19.483 main INFO sc_cli::runner  💾 Database: RocksDb at /home/leshiy/.local/share/node-template/chains/dev/db
2020-10-23 11:03:19.483 main INFO sc_cli::runner  ⛓  Native runtime: node-template-1 (node-template-1.tx1.au1)
2020-10-23 11:03:20.557 main INFO sc_service::client::client  🔨 Initializing Genesis block/state (state: 0x7eb9…5a2b, header-hash: 0x9ac9…1c7f)
2020-10-23 11:03:20.562 main INFO afg  👴 Loading GRANDPA authority set from genesis on what appears to be first startup.
2020-10-23 11:03:20.910 main INFO pallet_cosmos_abci  on_initialize(), block_number: 1, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:20.937 main INFO sc_consensus_slots  ⏱  Loaded block-time = 6000 milliseconds from genesis on first-launch
2020-10-23 11:03:20.939 main WARN sc_service::builder  Using default protocol ID "sup" because none is configured in the chain specs
2020-10-23 11:03:20.940 main INFO sub-libp2p  🏷  Local node identity is: 12D3KooWHZm4i6j5zsUQcueb9S35Q1speajGas8y9StPSLfxBHqX (legacy representation: QmfP8xaU13DYyZm74TDJejvC6QdYHLETDEw19Vcnao156q)
2020-10-23 11:03:21.030 main INFO pallet_cosmos_abci  on_initialize(), block_number: 1, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:21.296 main INFO sc_service::builder  📦 Highest known block at #0
2020-10-23 11:03:21.300 tokio-runtime-worker INFO substrate_prometheus_endpoint::known_os  〽️ Prometheus server started at 127.0.0.1:9615
2020-10-23 11:03:24.190 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 1, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:24.369 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f
2020-10-23 11:03:24.412 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 1, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:24.531 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 1, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x9ac9c4ed2c438aed38af311b57902ecf489b78a404a45c2a4e644129aa4d1c7f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:24.536 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 1 [hash: 0xd0c706ac65c64ca1a06d30d0e5d85d9a8ef490a57e7db2f57d1c3701b242aad6; parent_hash: 0x9ac9…1c7f; extrinsics (1): [0xd64f…4ccb]]
2020-10-23 11:03:24.689 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 1. Hash now 0xa4037774fa16dbd499569abe73b81e2f51e1913aa1a89bafd127be343b8f1ccf, previously 0xd0c706ac65c64ca1a06d30d0e5d85d9a8ef490a57e7db2f57d1c3701b242aad6.
2020-10-23 11:03:24.692 tokio-runtime-worker INFO substrate  ✨ Imported #1 (0xa403…1ccf)
2020-10-23 11:03:26.309 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #1 (0xa403…1ccf), finalized #0 (0x9ac9…1c7f), ⬇ 0 ⬆ 0
2020-10-23 11:03:30.003 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 2, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa4037774fa16dbd499569abe73b81e2f51e1913aa1a89bafd127be343b8f1ccf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:30.178 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0xa4037774fa16dbd499569abe73b81e2f51e1913aa1a89bafd127be343b8f1ccf
2020-10-23 11:03:30.180 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 2, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa4037774fa16dbd499569abe73b81e2f51e1913aa1a89bafd127be343b8f1ccf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:30.183 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 2, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa4037774fa16dbd499569abe73b81e2f51e1913aa1a89bafd127be343b8f1ccf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:30.188 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 2 [hash: 0x8a5eaa13070335b50f724aacf6af5181a8af53d1c76e4458d54fddcbfd17b23f; parent_hash: 0xa403…1ccf; extrinsics (1): [0xbaab…c702]]
2020-10-23 11:03:30.353 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 2. Hash now 0xed25af83d11ca351830e513f5abcb2d007d9182cd642fa711bc33e9e059a8424, previously 0x8a5eaa13070335b50f724aacf6af5181a8af53d1c76e4458d54fddcbfd17b23f.
2020-10-23 11:03:30.355 tokio-runtime-worker INFO substrate  ✨ Imported #2 (0xed25…8424)
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 53, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 48, 53, 50, 50, 54, 49, 54, 57, 55, 48, 55] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 49, 46, 48, 52, 53, 50, 51, 51, 57, 52, 49, 52, 48, 48, 48, 48, 48, 48, 48, 48] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [49] }] }] } }
2020-10-23 11:03:31.310 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #2 (0xed25…8424), finalized #0 (0x9ac9…1c7f), ⬇ 0 ⬆ 0
2020-10-23 11:03:36.007 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 3, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xed25af83d11ca351830e513f5abcb2d007d9182cd642fa711bc33e9e059a8424, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:36.310 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0xed25af83d11ca351830e513f5abcb2d007d9182cd642fa711bc33e9e059a8424
2020-10-23 11:03:36.311 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #2 (0xed25…8424), finalized #0 (0x9ac9…1c7f), ⬇ 0 ⬆ 0
2020-10-23 11:03:36.315 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 3, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xed25af83d11ca351830e513f5abcb2d007d9182cd642fa711bc33e9e059a8424, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:36.323 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 3, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xed25af83d11ca351830e513f5abcb2d007d9182cd642fa711bc33e9e059a8424, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:36.329 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 3 [hash: 0x84ae35fbb1497cfaa915718a721f9efcff1d66ea15258bf5138a098813279ced; parent_hash: 0xed25…8424; extrinsics (1): [0x6e05…3eb2]]
2020-10-23 11:03:36.557 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 3. Hash now 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, previously 0x84ae35fbb1497cfaa915718a721f9efcff1d66ea15258bf5138a098813279ced.
2020-10-23 11:03:36.559 tokio-runtime-worker INFO substrate  ✨ Imported #3 (0x6008…1050)
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 57, 48, 48, 48, 48, 48, 48, 48, 49, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 49, 48, 52, 53, 50, 51, 51, 57, 55, 50, 49] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 50, 46, 54, 49, 48, 52, 54, 55, 57, 56, 54, 48, 48, 57, 51, 53, 56, 56, 56, 52] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [56, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [50] }] }] } }
2020-10-23 11:03:38.365 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.385 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.538 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.544 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.553 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:38.553 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:38.687 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.692 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.703 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:38.703 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:38.880 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.888 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:38.900 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:38.901 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:39.106 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.112 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.123 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:39.123 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:39.298 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.305 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.314 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:39.315 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:39.482 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.488 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.499 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:39.499 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:39.686 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.693 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.704 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:39.705 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:39.918 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.925 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:39.936 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:39.937 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:40.146 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.155 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.169 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:40.169 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:40.370 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.377 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.387 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:40.387 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:40.582 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.589 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.600 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:40.601 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:40.799 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.806 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:40.817 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:40.817 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:41.013 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.020 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.029 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:41.029 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:41.199 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.202 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.211 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:41.211 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:41.312 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #3 (0x6008…1050), finalized #1 (0xa403…1ccf), ⬇ 0 ⬆ 0
2020-10-23 11:03:41.405 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.412 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.425 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:41.425 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:41.614 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.622 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.634 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:41.635 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:41.842 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.850 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:41.858 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:41.858 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:42.004 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.005 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.016 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.023 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:42.023 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:42.194 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.202 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.210 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:42.210 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:42.320 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050
2020-10-23 11:03:42.324 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.336 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.347 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 4 [hash: 0x2d4bed0d93bdc7c480f271dd4d89fa2e398fefd5f7f6d4ef14054e09ea85961e; parent_hash: 0x6008…1050; extrinsics (2): [0x6ab9…0794, 0x35eb…5bb6]]
2020-10-23 11:03:42.366 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.370 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.378 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:42.379 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:42.536 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.540 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 4, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x600870ee059a73c775ab6f9b41115e1a6a869f50f8456059b608aa19a42c1050, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.547 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:42.547 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:42.634 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 4. Hash now 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, previously 0x2d4bed0d93bdc7c480f271dd4d89fa2e398fefd5f7f6d4ef14054e09ea85961e.
2020-10-23 11:03:42.638 tokio-runtime-worker INFO substrate  ✨ Imported #4 (0x43e9…5aa4)
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 56, 48, 48, 48, 48, 48, 48, 48, 55, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 49, 53, 54, 55, 56, 53, 49, 48, 48, 52, 50] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 52, 46, 49, 55, 53, 55, 48, 50, 49, 51, 51, 56, 50, 56, 48, 56, 48, 51, 51, 54] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [51] }] }] } }
2020-10-23 11:03:42.702 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.710 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.888 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.895 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:42.907 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:42.908 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.093 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.101 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.113 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.114 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.298 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.306 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.316 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.316 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.512 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.519 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.527 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.527 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.642 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.645 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.651 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.651 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.772 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.779 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.788 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.788 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:43.970 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.977 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:43.987 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:43.988 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:44.172 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.179 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.189 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:44.189 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:44.388 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.396 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.408 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:44.408 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:44.552 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.556 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.562 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:44.562 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:44.676 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.681 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.690 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:44.690 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:44.884 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.892 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:44.902 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:44.903 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:45.092 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.100 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.110 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:45.110 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:45.233 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.236 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.242 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:45.242 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:45.374 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.383 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.394 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:45.395 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:45.589 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.596 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.607 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:45.607 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:45.798 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.807 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:45.817 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:45.818 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.014 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.022 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.033 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.034 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.168 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.174 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.180 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.180 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.297 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.304 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.313 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #4 (0x43e9…5aa4), finalized #2 (0xed25…8424), ⬇ 0 ⬆ 0
2020-10-23 11:03:46.315 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.315 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.505 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.512 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.522 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.523 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.714 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.722 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.732 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.732 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.856 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.861 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:46.868 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:46.869 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:46.997 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.004 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.015 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.015 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:47.201 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.208 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.219 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.219 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:47.413 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.420 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.431 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.431 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:47.621 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.628 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.639 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.639 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:47.775 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.779 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.785 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.785 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:47.912 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.920 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:47.930 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:47.930 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.006 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.118 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.123 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.129 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.130 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.243 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.247 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.255 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.255 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.278 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4
2020-10-23 11:03:48.282 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.290 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.297 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 5 [hash: 0x5f08415120dcd51327713a1d03d1ab00fc96c762e0947536f5c5d34ee4345e54; parent_hash: 0x43e9…5aa4; extrinsics (2): [0x973e…f7ee, 0x35eb…5bb6]]
2020-10-23 11:03:48.399 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.407 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.417 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.417 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.592 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.596 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 5, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x43e9ee424ed88ce8c2a0232bbd39b4a78bc0db5e0f95b301b621347313585aa4, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.602 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.602 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:48.606 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 5. Hash now 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, previously 0x5f08415120dcd51327713a1d03d1ab00fc96c762e0947536f5c5d34ee4345e54.
2020-10-23 11:03:48.610 tokio-runtime-worker INFO substrate  ✨ Imported #5 (0x336f…3d1f)
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 55, 48, 48, 48, 48, 48, 48, 49, 55, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 50, 48, 57, 48, 52, 54, 56, 48, 54, 55, 49] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 53, 46, 55, 52, 48, 57, 51, 54, 51, 56, 53, 48, 53, 54, 49, 54, 56, 48, 53, 50] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [52] }] }] } }
2020-10-23 11:03:48.730 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.737 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.944 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.952 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:48.962 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:48.962 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:49.155 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.162 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.172 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:49.172 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:49.339 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.343 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.348 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:49.349 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:49.461 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.465 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.473 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:49.473 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:49.611 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.618 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.629 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:49.629 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:49.822 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.830 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:49.841 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:49.841 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.021 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.025 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.030 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.031 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.152 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.156 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.162 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.162 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.337 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.344 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.354 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.354 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.548 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.555 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.565 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.565 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.757 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.764 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.773 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.773 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:50.960 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.963 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:50.969 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:50.969 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.082 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.087 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.094 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.094 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.247 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.254 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.265 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.266 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.317 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #5 (0x336f…3d1f), finalized #3 (0x6008…1050), ⬇ 0 ⬆ 0
2020-10-23 11:03:51.443 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.448 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.455 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.455 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.622 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.626 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.632 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.632 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.751 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.758 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.764 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.765 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:51.939 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.947 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:51.957 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:51.957 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:52.143 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.151 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.160 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:52.160 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:52.335 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.343 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.354 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:52.355 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:52.555 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.559 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.565 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:52.566 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:52.677 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.681 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.687 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:52.687 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:52.817 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.824 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:52.834 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:52.834 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.018 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.024 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.034 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.035 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.231 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.238 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.244 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.245 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.363 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.368 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.376 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.376 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.512 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.519 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.528 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.528 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.715 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.723 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.734 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.735 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:53.929 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.937 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:53.948 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:53.948 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.008 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.128 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.131 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.138 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:54.138 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.258 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.262 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.268 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:54.268 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.270 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f
2020-10-23 11:03:54.273 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.283 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.291 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 6 [hash: 0x8011eade0d5526d979144270c3baedeb4909f02e366a43116bd53c6195e9e246; parent_hash: 0x336f…3d1f; extrinsics (2): [0x3421…3e7c, 0x35eb…5bb6]]
2020-10-23 11:03:54.402 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.406 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.413 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:54.413 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.524 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 6. Hash now 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, previously 0x8011eade0d5526d979144270c3baedeb4909f02e366a43116bd53c6195e9e246.
2020-10-23 11:03:54.525 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.528 tokio-runtime-worker INFO substrate  ✨ Imported #6 (0xa806…7efb)
2020-10-23 11:03:54.531 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 6, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x336f51e7b703f3247afe802901377887511b5a889cbfc7184d1ed3320f583d1f, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 54, 48, 48, 48, 48, 48, 48, 51, 49, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 50, 54, 49, 51, 48, 56, 53, 49, 54, 48, 55] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 55, 46, 51, 48, 54, 49, 55, 48, 55, 51, 57, 52, 57, 51, 54, 50, 53, 55, 49, 50] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [53] }] }] } }
2020-10-23 11:03:54.674 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.681 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.690 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:54.690 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.863 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.867 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:54.873 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:54.874 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:54.998 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.002 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.009 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.009 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:55.139 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.146 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.157 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.157 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:55.349 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.357 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.368 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.368 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:55.576 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.583 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.594 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.595 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:55.784 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.789 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.796 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.796 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:55.914 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.919 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:55.926 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:55.926 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.066 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.073 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.085 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.085 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.281 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.289 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.297 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.297 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.318 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #6 (0xa806…7efb), finalized #3 (0x6008…1050), ⬇ 0 ⬆ 0
2020-10-23 11:03:56.446 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.451 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.460 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.460 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.579 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.583 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.589 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.589 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.737 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.744 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.755 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.755 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:56.960 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.968 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:56.978 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:56.979 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:57.180 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.187 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.198 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:57.198 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:57.389 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.393 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.400 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:57.400 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:57.509 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.513 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.518 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:57.518 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:57.638 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.642 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.649 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:57.650 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:57.839 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.845 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:57.856 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:57.856 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.049 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.053 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.059 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.059 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.167 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.170 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.176 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.176 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.300 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.306 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.316 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.317 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.526 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.534 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.545 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.546 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.748 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.757 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.768 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.769 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:58.969 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.973 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:58.979 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:58.979 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.097 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.101 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.107 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.107 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.274 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.281 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.292 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.292 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.486 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.493 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.505 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.505 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.674 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.678 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.686 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.686 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.820 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.823 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.829 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.829 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:03:59.969 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.977 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:03:59.988 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:03:59.988 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:00.006 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.149 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.153 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.159 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:00.159 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:00.272 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb
2020-10-23 11:04:00.274 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.275 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.281 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.285 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.288 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:00.289 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:00.294 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 7 [hash: 0x1a2d53cf2f81f1b99b0e4f9d8ad354138b4c99d89e3002b69ff63ad5beba3b0f; parent_hash: 0xa806…7efb; extrinsics (2): [0xc5b5…9ad4, 0x35eb…5bb6]]
2020-10-23 11:04:00.428 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.433 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 7, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xa80608c76552fe0de58c2baeca6846fa52997cd6e8bbeb4a03430bf41e937efb, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.438 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:00.439 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:00.550 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 7. Hash now 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, previously 0x1a2d53cf2f81f1b99b0e4f9d8ad354138b4c99d89e3002b69ff63ad5beba3b0f.
2020-10-23 11:04:00.553 tokio-runtime-worker INFO substrate  ✨ Imported #7 (0xf13f…8993)
2020-10-23 11:04:00.558 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 53, 48, 48, 48, 48, 48, 48, 52, 57, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 51, 49, 51, 53, 55, 48, 50, 50, 56, 53, 49] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 48, 56, 46, 56, 55, 49, 52, 48, 53, 49, 57, 55, 51, 52, 48, 52, 53, 55, 48, 50, 48] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [54] }] }] } }
2020-10-23 11:04:00.563 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.696 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.700 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.706 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:00.706 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:00.864 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.872 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:00.885 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:00.886 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:01.088 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.095 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.105 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:01.106 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:01.279 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.283 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.289 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:01.289 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:01.320 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #7 (0xf13f…8993), finalized #4 (0x43e9…5aa4), ⬇ 0 ⬆ 0
2020-10-23 11:04:01.416 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.421 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.427 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:01.427 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:01.576 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.583 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.593 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:01.593 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:01.792 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.799 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:01.810 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:01.810 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.004 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.011 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.023 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.023 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.214 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.219 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.227 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.227 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.347 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.350 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.355 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.355 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.512 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.519 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.529 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.530 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.723 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.731 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.741 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.741 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:02.918 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.921 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:02.926 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:02.927 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.043 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.048 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.053 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.053 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.214 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.222 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.233 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.233 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.435 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.442 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.453 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.454 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.639 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.646 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.657 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.657 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.843 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.848 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.855 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.855 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:03.984 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.987 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:03.993 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:03.993 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:04.134 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.141 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.151 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:04.152 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:04.354 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.361 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.371 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:04.372 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:04.536 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.539 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.544 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:04.545 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:04.652 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.655 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.661 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:04.661 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:04.830 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.838 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:04.850 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:04.851 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.047 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.055 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.067 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.067 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.266 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.273 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.284 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.284 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.462 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.465 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.471 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.471 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.584 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.587 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.593 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.593 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.717 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.724 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.734 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.734 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:05.934 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.942 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:05.952 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:05.952 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:06.007 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.127 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.131 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.138 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:06.138 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:06.272 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.279 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.282 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993
2020-10-23 11:04:06.286 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.291 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:06.291 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:06.297 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.305 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 8 [hash: 0x397f031705a7e8a944aa7436acbf19ace4d04bfb0271248b60e8fd686dc4f631; parent_hash: 0xf13f…8993; extrinsics (2): [0xeb52…96d9, 0x35eb…5bb6]]
2020-10-23 11:04:06.322 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #7 (0xf13f…8993), finalized #5 (0x336f…3d1f), ⬇ 0 ⬆ 0
2020-10-23 11:04:06.488 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.493 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 8, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0xf13f248504b5285ba801b5cf27d5701e502d74b954e1c40498dcbf7a16aa8993, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.500 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:06.500 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:06.620 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 8. Hash now 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, previously 0x397f031705a7e8a944aa7436acbf19ace4d04bfb0271248b60e8fd686dc4f631.
2020-10-23 11:04:06.624 tokio-runtime-worker INFO substrate  ✨ Imported #8 (0x0602…9bbf)
2020-10-23 11:04:06.635 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 52, 48, 48, 48, 48, 48, 48, 55, 49, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 51, 54, 53, 56, 51, 49, 57, 52, 52, 48, 50] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 49, 48, 46, 52, 51, 54, 54, 51, 57, 55, 53, 56, 51, 57, 54, 54, 54, 53, 54, 52, 56] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [55] }] }] } }
2020-10-23 11:04:06.640 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.805 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.812 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:06.822 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:06.822 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:06.999 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.002 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.008 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.008 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.120 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.123 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.129 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.129 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.258 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.265 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.276 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.277 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.476 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.485 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.496 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.496 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.690 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.698 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.709 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.709 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.826 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.829 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.835 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.835 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:07.973 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.981 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:07.991 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:07.992 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:08.187 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.195 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.205 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:08.206 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:08.408 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.416 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.426 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:08.426 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:08.628 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.636 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.645 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:08.646 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:08.768 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.772 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.778 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:08.778 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:08.920 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.927 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:08.939 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:08.939 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:09.133 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.140 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.152 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:09.152 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:09.340 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.344 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.351 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:09.351 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:09.467 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.470 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.476 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:09.477 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:09.626 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.632 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.640 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:09.640 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:09.802 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.809 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:09.818 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:09.819 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.005 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.012 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.021 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.021 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.200 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.204 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.210 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.210 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.324 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.327 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.333 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.333 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.463 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.470 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.483 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.484 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.670 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.677 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.687 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.687 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:10.869 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.877 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:10.888 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:10.889 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.010 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.014 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.023 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.023 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.149 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.156 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.165 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.165 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.324 tokio-runtime-worker INFO substrate  💤 Idle (0 peers), best: #8 (0x0602…9bbf), finalized #6 (0xa806…7efb), ⬇ 0 ⬆ 0
2020-10-23 11:04:11.357 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.363 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.374 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.374 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.561 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.568 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.578 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.578 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.771 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.779 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.790 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.790 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:11.948 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.953 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:11.960 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:11.960 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:12.004 tokio-runtime-worker INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.086 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.091 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.098 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:12.098 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:12.223 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.227 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.233 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:12.233 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:12.243 tokio-runtime-worker INFO sc_basic_authorship::basic_authorship  🙌 Starting consensus session on top of parent 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf
2020-10-23 11:04:12.246 tokio-blocking-driver INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.255 tokio-blocking-driver INFO pallet_cosmos_abci  on_finalize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.261 tokio-blocking-driver INFO sc_basic_authorship::basic_authorship  🎁 Prepared block for proposing at 9 [hash: 0xabf567db309c7ed545e93e870e455ad63ce7744a513514c84bb857087c16eb94; parent_hash: 0x0602…9bbf; extrinsics (2): [0xb6b2…7988, 0x35eb…5bb6]]
2020-10-23 11:04:12.370 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.377 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.386 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:12.386 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:12.508 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.513 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 9, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x0602352a863a59453af009c4d9078868480f2fc82e231d1c2732a1ce122b9bbf, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.520 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:12.520 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:12.529 tokio-runtime-worker INFO sc_consensus_slots  🔖 Pre-sealed block for proposal at 9. Hash now 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, previously 0xabf567db309c7ed545e93e870e455ad63ce7744a513514c84bb857087c16eb94.
2020-10-23 11:04:12.533 tokio-runtime-worker INFO substrate  ✨ Imported #9 (0x739c…8a94)
Response { metadata: MetadataMap { headers: {"content-type": "application/grpc", "grpc-status": "0", "grpc-message": ""} }, message: ResponseBeginBlock { events: [Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 109, 51, 104, 51, 48, 119, 108, 118, 115, 102, 56, 108, 108, 114, 117, 120, 116, 112, 117, 107, 100, 118, 115, 121, 48, 107, 109, 50, 107, 117, 109, 56, 103, 51, 56, 99, 56, 113] }] }, Event { r#type: "mint", attributes: [Pair { key: [98, 111, 110, 100, 101, 100, 95, 114, 97, 116, 105, 111], value: [48, 46, 52, 57, 57, 57, 57, 57, 57, 51, 48, 48, 48, 48, 48, 48, 57, 55, 57, 57] }, Pair { key: [105, 110, 102, 108, 97, 116, 105, 111, 110], value: [48, 46, 49, 51, 48, 48, 48, 48, 48, 52, 49, 56, 48, 57, 51, 54, 54, 50, 54, 49] }, Pair { key: [97, 110, 110, 117, 97, 108, 95, 112, 114, 111, 118, 105, 115, 105, 111, 110, 115], value: [50, 54, 48, 48, 48, 48, 49, 50, 46, 48, 48, 49, 56, 55, 52, 52, 50, 50, 56, 54, 50, 50, 53, 53, 51, 48, 56] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52] }] }, Event { r#type: "transfer", attributes: [Pair { key: [114, 101, 99, 105, 112, 105, 101, 110, 116], value: [99, 111, 115, 109, 111, 115, 49, 106, 118, 54, 53, 115, 51, 103, 114, 113, 102, 54, 118, 54, 106, 108, 51, 100, 112, 52, 116, 54, 99, 57, 116, 57, 114, 107, 57, 57, 99, 100, 56, 56, 108, 121, 117, 102, 108] }, Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }, Pair { key: [97, 109, 111, 117, 110, 116], value: [52, 115, 116, 97, 107, 101] }] }, Event { r#type: "message", attributes: [Pair { key: [115, 101, 110, 100, 101, 114], value: [99, 111, 115, 109, 111, 115, 49, 55, 120, 112, 102, 118, 97, 107, 109, 50, 97, 109, 103, 57, 54, 50, 121, 108, 115, 54, 102, 56, 52, 122, 51, 107, 101, 108, 108, 56, 99, 53, 108, 115, 101, 114, 113, 116, 97] }] }, Event { r#type: "update_client", attributes: [Pair { key: [99, 108, 105, 101, 110, 116, 95, 105, 100], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 108, 105, 101, 110, 116, 95, 116, 121, 112, 101], value: [108, 111, 99, 97, 108, 104, 111, 115, 116] }, Pair { key: [99, 111, 110, 115, 101, 110, 115, 117, 115, 95, 104, 101, 105, 103, 104, 116], value: [56] }] }] } }
2020-10-23 11:04:12.649 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.656 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.801 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.809 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:12.820 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:12.821 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:13.023 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.031 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.042 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:13.043 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:13.240 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.248 http.worker10 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.262 http.worker10 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:13.262 http.worker10 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:13.447 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.451 http.worker20 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.457 http.worker20 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:13.457 http.worker20 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:13.575 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.579 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.586 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:13.586 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()
2020-10-23 11:04:13.716 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.723 http.worker00 INFO pallet_cosmos_abci  on_initialize(), block_number: 10, block_hash: 0x0000000000000000000000000000000000000000000000000000000000000000, parent_hash: 0x739ce59a7897412ef146b762d1ea850d4c23db0c0e8ffcc2ff536689660a8a94, extrinsics_root: 0x0000000000000000000000000000000000000000000000000000000000000000
2020-10-23 11:04:13.733 http.worker00 WARN txpool  (offchain call) Error submitting a transaction to the pool: Pool(AlreadyImported(Any))
2020-10-23 11:04:13.733 http.worker00 ERROR node_template_runtime  Failed to broadcast deliver_tx transaction, error: ()

V2.0.0 p2p connection not compatible with RC3

We are in the process of upgrading our chain to v2.0.0 released.
We were able to successfully upgrade to 2.0.0-rc6 from alpha.3, and since we saw that the official 2.0 release was out we thought to give it a go.

Since we have to make a two step upgrade node first and then runtime due to all the changes between these two versions, we had to have a hybrid network for a little bit using bootnodes in RC3, so old nodes (alpha3) and new ones (rc6) could still communicate to each other until we execute the runtime upgrade.
After RC3 the --legacy-network-protocol was removed, so we had to use that version for the bootnodes (closest compatible to RC6).
Now have been trying to use instead of RC6, the latest released v2.0.0, and since there has been changes on the libp2p version seems like it cannot connect anymore with older nodes (RC3 ones).

I can see in the logs:

Sep 24 08:27:13.701 DEBUG Handler(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")) => Endpoint Dialer { address: "/ip4/127.0.0.1/tcp/30335" } open for custom protocols.
Sep 24 08:27:13.701 DEBUG External API <= Open(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw"))
Sep 24 08:27:13.701 DEBUG Connected 12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw
Sep 24 08:27:13.701 DEBUG New peer with known best hash 0x4249…c6e2 (571).
Sep 24 08:27:13.701 DEBUG Negotiated: Received confirmation for protocol: /substrate/flvs/6
Sep 24 08:27:13.702 DEBUG Successfully applied negotiated protocol
Sep 24 08:27:13.702 DEBUG Received no longer supported legacy request from PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")
Sep 24 08:27:13.702 DEBUG External API => Disconnect PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")
Sep 24 08:27:13.702 DEBUG PSM <= Dropped(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw"))
Sep 24 08:27:13.702 DEBUG Handler(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")) <= Disable
Sep 24 08:27:13.702 DEBUG PSM => Connect(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")): Enabling connections.
Sep 24 08:27:13.702 DEBUG Handler(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")) <= Enable
Sep 24 08:27:13.702 DEBUG Report 12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw: -2147483648 to -2147483648. Reason: Unsupported protocol, Disconnecting
Sep 24 08:27:13.702 DEBUG PSM => Drop(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")): Disabling connections.
Sep 24 08:27:13.702 DEBUG Dropped TCP connection to 127.0.0.1:30335
Sep 24 08:27:13.702 DEBUG Handler(PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw")) <= Disable
Sep 24 08:27:13.702 DEBUG Connection Connected { endpoint: Dialer { address: "/ip4/127.0.0.1/tcp/30335" }, info: PeerId("12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw") } closed: Handler(Handler(A(A(A(A(A(A(Legacy(ConnectionKillError)))))))))
Sep 24 08:27:13.702 DEBUG Libp2p => Connection (ConnectionId(TaskId(36)),Dialer { address: "/ip4/127.0.0.1/tcp/30335" }) to 12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw closed.
Sep 24 08:27:13.702 DEBUG External API <= Closed(12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw)
Sep 24 08:27:13.702 DEBUG Libp2p => Disconnected(12D3KooWL7zjphsMraXk4pMwR5eJiuYCjtybvLAXqXbDQNbK8oiw): Was disabled.

Is there any way that we could (easily) fix the incompatibility, without downgrading the libp2p version?

Otherwise we might have to stick to RC6 and schedule a future upgrade to v2.0.0 as soon as all the nodes in the network have been upgraded.

Thanks in advance

how start a private network

i use alpaha4, but when i use the command"build-spec --chain local > customSpec.json", the json file is different from alpha3. how can i do for start my private network(many node)

SubmitExtrinsic error: kind: Unreachable

When I encountered this error when submitting my transaction, I am not clear what the specific error is and which parameters are not in compliance with the requirements? Where can I know? Thank you!

let tx = '0x210281ff88ccfe1c52268e4f5dfb6228e71b2cff7a24446fad25fcd2bc3481fad2c63ccf00225c93ef4919723b8b5b368461734f4e10b88842fb5a1c718f91b756d1784c24fd6967e009e80bf2138172f61be4a9d969b290be276a52b96c0d45584337c104000600ff47c9440935f46211a67b04514420dec0bbc79d7751b3757fb0e0cc164b6d2b1e1c';
let ret = api.rpc.author.submitExtrinsic(tx);

RPC-CORE: submitExtrinsic(extrinsic: Extrinsic): Hash:: 1002: Verification Error: Execution(Wasmi(Trap(Trap { kind: Unreachable }))): RuntimeApi("Execution(Wasmi(Trap(Trap { kind: Unreachable })))

build error

After receiving the substrate from git, adding the following pallet to the node-templete and while building the error is as follows. Can you see why?

-Cargo.lock (substrate) : sp-application-crypto version = "2.0.0"
-Cargo.lock(substrate-validator-set_) : sp-application-crypto version = "2.0.0-rc4"

-cargo version : cargo 1.46.0 (149022b1d 2020-07-17)
-rustc version : rustc 1.46.0 (04488afe3 2020-08-24)
-linux : centos 7
-https://github.com/gautamdhameja/substrate-validator-set (pallet)

-error
error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:240:3
|
240 | impl $crate::CryptoType for Public {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/ed25519.rs:29:5
|
29 | crate::app_crypto!(super, ED25519);
| ----------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:433:3
|
433 | impl $crate::CryptoType for Signature {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/ed25519.rs:29:5
|
29 | crate::app_crypto!(super, ED25519);
| ----------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:240:3
|
240 | impl $crate::CryptoType for Public {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/sr25519.rs:29:5
|
29 | crate::app_crypto!(super, SR25519);
| ----------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:433:3
|
433 | impl $crate::CryptoType for Signature {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/sr25519.rs:29:5
|
29 | crate::app_crypto!(super, SR25519);
| ----------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:240:3
|
240 | impl $crate::CryptoType for Public {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/ecdsa.rs:28:5
|
28 | crate::app_crypto!(super, ECDSA);
| --------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error[E0046]: not all trait items implemented, missing: Pair
--> /home/final/v1/primitives/application-crypto/src/lib.rs:433:3
|
433 | impl $crate::CryptoType for Signature {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing Pair in implementation
|
::: /home/final/v1/primitives/application-crypto/src/ecdsa.rs:28:5
|
28 | crate::app_crypto!(super, ECDSA);
| --------------------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
= help: implement the missing item: type Pair = Type;

error: aborting due to 6 previous errors

For more information about this error, try rustc --explain E0046.
error: could not compile sp-application-crypto

To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed
warning: build failed, waiting for other jobs to finish...
error: build failed

Hopes of a stable API

Some rough data showing the # of B1-breaksapi labelled PRs that have been merged over the last year.

Screen Shot 2020-04-09 at 2 41 08 PM

I'm aware that not all the changes are equal in complexity but this at least shows some indication of how changes are being approached in the framework.

As a downstream project it feels like most our time is spent playing catch up with the changes,
there are some things where I see good opportunities to contribute PRs here but the driver feels more like "If I push my code upstream then it won't break when the next big refactor happens" vs. "this would be a valuable contribution to the ecosystem"

So this is a request to consider the complexity that's being handed to all downstream projects from the frequent refactors and changes and ultimately the detriment to contribution it has.

curl https://getsubstrate.io -sSf | bash -s -- --fast aborts due to error

info: retrying renaming '/home/noone/.rustup/tmp/svj00w7loxze4ljh_dir/rust-docs/share/doc/rust/html' to '/home/noone/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share/doc/rust/html'
info: retrying renaming '/home/noone/.rustup/tmp/svj00w7loxze4ljh_dir/rust-docs/share/doc/rust/html' to '/home/noone/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share/doc/rust/html'
info: rolling back changes
error: could not rename component file from '/home/noone/.rustup/tmp/svj00w7loxze4ljh_dir/rust-docs/share/doc/rust/html' to '/home/noone/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/share/doc/rust/html'
error: caused by: permission denied

Off-chain worker migration from RC4

Having issues with moving and existing OCW pallet to the current substrate-node-template, im coming from RC4. Pallet compiles fine (doesn't mean much ), but I am lost on placing development keys into the keystore. I see that the docs are due to be updated on issue #776 of the substrate-developer-hub.github.io , Are there some other docs/examples concerning if config.offchain_worker.enabled { ? Like how to modify the config in general? Is it via chain_spec.rs ?

Substrate node template error#E0463 - can't find crate for std

I am following the tutorial [importing contracts pallet crate]. Installed nightly-2020-10-06 and cargo build. When I run code get error - "cant find std"_"the wasm32-unknown-unknown target may not be installed". Can not work out where I am going wrong... Have added [dependencies] and [features] runtime code - then ran cargo check... where I get error... Would like to know where I am going wrong, and how too solve issue..

Query the node interface document

I want to make a DOT wallet. Is there a node interface document that allows me to generate addresses, transfer money, query transaction records, and so on?

Importing Contracts Pallets - can't find crate for cookie_monster -cake_is_a_lie

Trying to solve issue when I run 'cargo check '.

Successfully complied cargo +nightly-2020-10-06 build. When I run, cargo check - receive errors:
[Rust WASM toolchain not installed, please install it!]
[error[E0463]: can't find crate for std]..

#![feature(plugin)]
#![plugin(cookie_monster)] // error: can't find crate for cookie_monster
extern crate cake_is_a_lie; // error: can't find crate for cake_is_a_lie

I still can not work out where I am going wrong?

query transaction

Is there a way to know the transaction hash information for each block call by using the substrate rpc? I want to extract the transaction hash information that for example alice sent 100 to bob by searching the block and extracting that alice gave 100 to bob in the corresponding transaction.

Contract never stops deploying

Dear substrate,

I just added the contracts module, and it never stops sending.
Am I missing some flag in the startline?
Because blocks are being produced.
I start the node with cargo build --release -- --dev

Question about Forkless Upgrade

I knew that for pallet-runtime, substrate would build both native runtime and wasm runtime to achieve forkless upgrade. This is fantastic.

Besides pallet-runtime, in the node-template, node would rely on some substrate client dependencies such as sc-network, sc-service, sc-executor and sc-consensus. If I built a blockchain based on alpha6 version, for example. Months later, I want to upgrade the dependencies to rc2. Would it casue hard fork for my blockchain?

Is there some suggestions and best practice for such scenario?

Wrong transferrable value

Two validator accounts, initial state is:

Total: 350,000
Locked: 349,990(Vesting, will unlock gradually after 1 month)
Bonded: 300,000
Initial transferrable: 10

After a few eras, I made a payout(100 tokens were transferred to them to set an identity, so the reserved value is 100):

image

I got 704.296 rewards and the reward destination is "Staked", so the bonded value is 300,704.296 now.

But why the transferrable value is 718.371? I think it should be 14.075 (718.371 - 704.296), because 704.296 rewards were already bonded.

If the transferrable value is 718.371, it means I can use the rewards(704.296) now and they are also bonded. Is that a problem?

Error: Input("Error parsing spec file: expected value at line 1 column 1")

i am following the run your private node tutorial and encountereed this error:
PS C:\Users\hp\desktop\substrate-node-template> ./target/release/node-template build-spec --chain=customSpec.json --raw --disable-default-bootnode > customSpecRaw.json
Error: Input("Error parsing spec file: expected value at line 1 column 1")

i tried without making any change to customSpec.json but still the error is there

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.