Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
Mr-Leshiy opened this issue Oct 23, 2020 · 1 comment
Closed

Comments

@Mr-Leshiy
Copy link

Mr-Leshiy commented Oct 23, 2020

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: ()
@danforbes
Copy link

Here is what I have learned about the questions you asked:

  1. on_initialize is called any time that a runtime function is called from the client, so it is normal to see multiple calls to on_initialize.
  2. There is no guarantee that on_finalize will execute after on_initialize.
  3. on_initialize and on_finalize are called before the block hash and extrinsic root are calculated so it is expected that you would not be able to access them in either function; these values are calculated immediately after calling on_finalize.

Can you please close this Issue if you don't have any follow-up questions?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants