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

Thread Blocked When Added Transaction #3373

Closed
sudo1991 opened this issue Feb 4, 2022 · 13 comments
Closed

Thread Blocked When Added Transaction #3373

sudo1991 opened this issue Feb 4, 2022 · 13 comments
Assignees
Labels
bug Something isn't working can't reproduce P4 Low (ex: Node doesn't start up when the configuration file has unexpected "end-of-line" character)

Comments

@sudo1991
Copy link

sudo1991 commented Feb 4, 2022

I sent 190 transactions per second to the Besu network.

If a transaction used 337,472 gas in the log, multiple transactions were stored in one block,

Block Gas Limit = 9,007,199,254,740,991(genesis.json "gasLimit" : "0x1fffffffffffff")
Transaction Gas Limit = 1,000,000,000

but a problem occurred when a transaction used 1,222,986 gas in the log.

Block Gas Limit = 9,007,199,254,740,991(genesis.json "gasLimit" : "0x1fffffffffffff")
Transaction Gas Limit = 9,007,199,254,740,991

Transactions are written to the block only if this is the case.
A block is created approximately every 3 minutes and 30 seconds, and only one transaction is recorded in the block.

If the Transaction Gas Limit is less than that value, the following exception occurs.

2022-01-25 14:25:53.191+09:00 | vertx-blocked-thread-checker | WARN  | BlockedThreadChecker | Thread Thread[vert.x-worker-thread-18,5,main]=Thread[vert.x-worker-thread-18,5,main] has been blocked for 666461 ms, time limit is 60000 ms
io.vertx.core.VertxException: Thread blocked
        at app//org.hyperledger.besu.ethereum.eth.transactions.sorter.GasPricePendingTransactionsSorter.addTransaction(GasPricePendingTransactionsSorter.java:92)
        at app//org.hyperledger.besu.ethereum.eth.transactions.sorter.AbstractPendingTransactionsSorter.addLocalTransaction(AbstractPendingTransactionsSorter.java:179)
        at app//org.hyperledger.besu.ethereum.eth.transactions.TransactionPool.addLocalTransaction(TransactionPool.java:142)
        at app//org.hyperledger.besu.ethereum.api.jsonrpc.internal.methods.EthSendRawTransaction.response(EthSendRawTransaction.java:79)
        at app//org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService.process(JsonRpcHttpService.java:725)
        at app//org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService.lambda$handleJsonSingleRequest$13(JsonRpcHttpService.java:579)
        at app//org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda$1201/0x0000000840621440.handle(Unknown Source)
        at app//io.vertx.core.impl.ContextImpl.lambda$executeBlocking$2(ContextImpl.java:313)
        at app//io.vertx.core.impl.ContextImpl$$Lambda$729/0x0000000840515c40.run(Unknown Source)
        at java.base@11.0.13/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
        at java.base@11.0.13/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
        at app//io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
        at java.base@11.0.13/java.lang.Thread.run(Thread.java:829)

My ibftConfigFile is

{
  "genesis": {
    "alloc": {
      "6f8e4674c80c76833daa6fc1f19343c7a4909de8" : {
        "balance" : "1000000000000000000000000000"
      },
      ...
    },
    "coinbase": "0x0000000000000000000000000000000000000000",
    "config": {
      "chainId": 20211221,
      "muirglacierblock": 0,
      "ibft2": {
        "blockperiodseconds": 1,
        "epochlength": 30000,
        "requesttimeoutseconds": 2
      },
      "contractSizeLimit" : 2147483647
    },
    "messageQueueLimit": 5000000,
    "difficulty": "0x1",
    "gasLimit" : "0x1fffffffffffff",
    "mixHash": "0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365",
    "nonce": "0x0",
    "timestamp": "0x00"
  },
  "blockchain": {
    "nodes": {
      "generate": true,
      "count": 4
    }
  }
}

My bootnode options are

nohup $APP_HOME/bin/besu \
  --genesis-file=$GENESIS_PATH \
  --logging=INFO \
  --data-path=$DATA_DIR \
  --network-id=$NETWORK_ID \
  --rpc-http-host=0.0.0.0 \
  --rpc-http-enabled \
  --rpc-http-port=$RPC_PORT \
  --rpc-http-cors-origins="all" \
  --rpc-http-api=ADMIN,ETH,DEBUG,MINER,NET,TXPOOL,WEB3,IBFT \
  --host-allowlist="*" \
  --p2p-port=$P2P_PORT \
  --tx-pool-max-size=5000000 \
  --min-gas-price=0 \
>> $LOG_FILE 2>&1 &

My other nodes options are

nohup $APP_HOME/bin/besu \
  --genesis-file=$GENESIS_PATH \
  --logging=INFO \
  --data-path=$DATA_DIR \
  --network-id=$NETWORK_ID \
  --rpc-http-host=0.0.0.0 \
  --rpc-http-enabled \
  --rpc-http-port=$RPC_PORT \
  --rpc-http-cors-origins="all" \
  --rpc-http-api=ADMIN,ETH,DEBUG,MINER,NET,TXPOOL,WEB3,IBFT \
  --host-allowlist="*" \
  --p2p-port=$P2P_PORT \
  --min-gas-price=0 \
  --tx-pool-max-size=5000000 \
  --bootnodes=enode://INSERT_ENODE@$BOOTNODE_HOSTNAME:$P2P_PORT \
  --tx-pool-retention-hours=24 \
>> $LOG_FILE 2>&1 &

Versions (Add all that apply)

  • software version: [ besu --version ]
    • besu/v21.10.5/linux-x86_64/openjdk-java-11
  • java version: [ java -version ]
    • openjdk version "11.0.13" 2021-10-19 LTS
  • OS Name & Version: [cat /etc/*release]
    • CentOS Linux release 8.5.2111
  • Kernel Version: [uname -a]
    • Linux ppelblk01 4.18.0-305.25.1.el8_4.x86_64 '#'1 SMP Wed Nov 3 10:29:07 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

Additional Information

@MadelineMurray MadelineMurray added the bug Something isn't working label Feb 7, 2022
@macfarla
Copy link
Contributor

macfarla commented Feb 8, 2022

I think there's a few things going on here. I would start with this:

  • you've configured blockperiodseconds=1 but you're only getting blocks created every 3 minutes? You might need to tune your block time to minimize round changes (some info here https://besu.hyperledger.org/en/stable/HowTo/Configure/Consensus-Protocols/IBFT/#block-time)
    Also - think about how many transactions are fitting into each block. If right now you're sending 190 tx per second but only 10 are going in each block, and blocks are taking 3 minutes, then you're overloading your node.

@sudo1991
Copy link
Author

sudo1991 commented Feb 8, 2022

Thank you for your answer.

I think my smart contract uses more gas than the gas usage recorded in the log file.

If I tune my block time to minimize round changes, Isn't the performance worse?
What is the relationship between performance and blockperiodseconds value?

And there is no problem with node resources, but only 1 tx is going in each block.
This case:

  • A transaction used 1,222,986 gas in the log file.
    Block Gas Limit = 9,007,199,254,740,991(genesis.json "gasLimit" : "0x1fffffffffffff")
    Transaction Gas Limit = 9,007,199,254,740,991
    If lower a transaction gas limit results:
    io.vertx.core.VertxException: Thread blocked

Even if transactions per second is lowered, the result is the same.

Please suggest a specific solution.

@sudo1991 sudo1991 closed this as completed Feb 8, 2022
@sudo1991 sudo1991 reopened this Feb 8, 2022
@macfarla
Copy link
Contributor

macfarla commented Feb 8, 2022

If I tune my block time to minimize round changes, Isn't the performance worse?
What is the relationship between performance and blockperiodseconds value?
For IBFT2 the validators all need to be on the same round in order for a block to be successfully produced. If you set the blockperiodseconds value too short, some node/s will advance to the next round before the block can be produced, and each subsequent round takes longer, in order to give all nodes a chance to catch up to the same round. This is what the tuning section in our docs is about.

With blockperiodseconds=1 I would expect block times in the order of seconds not minutes.

Can you try with blockperiodseconds of 2 or 3 (and also increase the requesttimeoutseconds as recommended)?

Also recommend observing the behaviour of the IBFT2 block propose/import process with fewer transactions being fired. You can check the besu logs for IBFT2 round change messages.

@lucassaldanha
Copy link
Member

@SeongUkJeon I have seen a similar issue when the node is running in a machine with slow storage. Maybe this is the case? Could you confirm the specs of the hardware you are running this node on?

@sudo1991
Copy link
Author

sudo1991 commented Feb 10, 2022

@lucassaldanha I have enough storage and I'm using SSD
/dev/xvdc ext4 295G 42G 239G 15% /chain_data
My open files value is
open files (-n) 1024
is it related to this?

@lucassaldanha
Copy link
Member

@lucassaldanha I have enough storage and I'm using SSD /dev/xvdc ext4 295G 42G 239G 15% /chain_data My open files value is open files (-n) 1024 is it related to this?

I don't think it is related to the number of open files. I just wanted to eliminate the issue when running Besu in slow storage.

@sudo1991
Copy link
Author

@macfarla As you suggested, I tested by setting
Block Gas Limit = 9,007,199,254,740,991(genesis.json "gasLimit" : "0x1fffffffffffff")
Transaction Gas Limit = 1,000,000,000
blockperiodseconds=2
requesttimeoutseconds=4
but, Nothing is recorded in the log file except for the following this message.
2022-02-10 16:11:28.424+09:00 | EthScheduler-Transactions-1 | WARN | TransactionsMessageProcessor | 1000 expired transaction messages have been skipped.

@macfarla
Copy link
Contributor

1000 expired transactions - I recommend observing the behaviour of the IBFT2 block propose/import process with fewer transactions being fired. You can check the besu logs for IBFT2 round change messages.

@sudo1991
Copy link
Author

sudo1991 commented Feb 11, 2022

@macfarla I tested by setting
Block Gas Limit = 9,007,199,254,740,991(genesis.json "gasLimit" : "0x1fffffffffffff")
Transaction Gas Limit = 1,000,000,000
blockperiodseconds=2
requesttimeoutseconds=4
I send 75 transactions per second, 400 in total.
And this is some content of besu log file.
The log level is DEBUG.

2022-02-11 15:20:42.505+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 31 not above current chain height 31.
2022-02-11 15:20:42.506+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=31), currently mining on top of 30.
2022-02-11 15:20:42.973+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:42.974+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:42.981+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:42.982+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:42.986+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:42.987+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:42.991+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:42.992+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:42.996+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:42.997+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.000+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.001+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.005+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.005+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.009+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.010+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.013+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.013+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.017+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.018+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.021+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.022+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.025+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.026+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.029+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.029+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.032+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.033+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.037+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.037+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.041+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.042+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.045+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.046+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.050+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.050+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.054+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.054+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:43.069+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.069+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:43.073+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.074+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:43.278+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.279+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:43.485+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.485+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:43.691+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.692+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:43.898+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:43.899+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:44.067+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.069+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:44.104+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.104+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:44.135+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:44.146+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.148+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.148+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.149+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.150+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.150+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=32, Round=0}
2022-02-11 15:20:44.151+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=32, Round=0}, hash=0xeb51812ed5b6770f99879a54a22a89c7110a19e529d629e5028e29dbbf11682c
2022-02-11 15:20:44.152+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:44.217+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:44.228+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x20.
2022-02-11 15:20:44.229+09:00 | EthScheduler-Workers-3 | INFO | PersistBlockTask | Imported #32 / 1 tx / 0 om / 7,323,027 (0.0%) gas / (0xeb51812ed5b6770f99879a54a22a89c7110a19e529d629e5028e29dbbf11682c) in 0.018s. Peers: 4
2022-02-11 15:20:44.229+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #32 / 1 tx / 0 pending / 7,323,027 (0.0%) gas / (0xeb51812ed5b6770f99879a54a22a89c7110a19e529d629e5028e29dbbf11682c)
2022-02-11 15:20:44.229+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 32 not above current chain height 32.
2022-02-11 15:20:44.230+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=32), currently mining on top of 31.
2022-02-11 15:20:44.309+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.310+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:44.350+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.351+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.357+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.358+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.364+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.365+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.369+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.370+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.375+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.375+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.379+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.380+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.386+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.389+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.395+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.396+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.403+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.403+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.409+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.410+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.414+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.415+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.420+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.428+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.433+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.434+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.439+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.439+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.444+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.445+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.450+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.450+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.455+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.456+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.461+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.461+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.473+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.473+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.478+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.484+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.489+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.492+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.496+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.497+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.504+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.504+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.510+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.510+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.516+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.516+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.521+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.523+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.528+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.528+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.533+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.533+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:44.554+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.555+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:44.565+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.565+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:44.769+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.770+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:44.974+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:44.975+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:45.181+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:45.182+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:45.386+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:45.387+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:45.591+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:45.591+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:45.795+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:45.796+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:45.904+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 31, Peers: 4
2022-02-11 15:20:45.904+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:20:46.000+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.001+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.169+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.205+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.206+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.332+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.335+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.335+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.337+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.338+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=33, Round=0}
2022-02-11 15:20:46.339+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=33, Round=0}, hash=0xbd83c2739cec73ff80943fdbf75fbccce95da759aee5604089af61c3726c6a27
2022-02-11 15:20:46.410+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.410+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.515+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x21.
2022-02-11 15:20:46.515+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #33 / 28 tx / 0 pending / 6,824,244 (0.0%) gas / (0xbd83c2739cec73ff80943fdbf75fbccce95da759aee5604089af61c3726c6a27)
2022-02-11 15:20:46.516+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 33 not above current chain height 33.
2022-02-11 15:20:46.516+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 33 not above current chain height 33.
2022-02-11 15:20:46.516+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=33), currently mining on top of 32.
2022-02-11 15:20:46.517+09:00 | EthScheduler-Workers-0 | INFO | PersistBlockTask | Imported #33 / 28 tx / 0 om / 6,824,244 (0.0%) gas / (0xbd83c2739cec73ff80943fdbf75fbccce95da759aee5604089af61c3726c6a27) in 0.027s. Peers: 4
2022-02-11 15:20:46.914+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.915+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.920+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.921+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.925+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.926+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.930+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.931+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.934+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.934+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.937+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.937+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.940+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.941+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.944+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.944+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.947+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.947+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.950+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.951+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.953+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.954+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.957+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.957+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.960+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.960+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.963+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.963+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.966+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.966+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.969+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.969+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.972+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.972+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.975+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.976+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.979+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.979+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.982+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.982+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.985+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.985+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.988+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.988+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.991+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.992+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.994+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.995+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:46.998+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:46.998+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:47.001+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.001+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:47.004+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.004+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:47.007+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.007+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:47.021+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.022+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:47.025+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.026+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:47.230+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.231+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:47.436+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.437+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:47.642+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.643+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:47.849+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:47.849+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:48.055+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.055+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:48.070+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.073+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:48.145+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:48.156+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.158+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.158+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.161+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.162+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=34, Round=0}
2022-02-11 15:20:48.162+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=34, Round=0}, hash=0x5f7a2d02aa5e9428421fa49bf05951846488327589f9760ab48dd1459168c484
2022-02-11 15:20:48.164+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:48.220+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:48.231+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x22.
2022-02-11 15:20:48.232+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #34 / 1 tx / 0 pending / 7,323,015 (0.0%) gas / (0x5f7a2d02aa5e9428421fa49bf05951846488327589f9760ab48dd1459168c484)
2022-02-11 15:20:48.232+09:00 | EthScheduler-Workers-1 | INFO | PersistBlockTask | Imported #34 / 1 tx / 0 om / 7,323,015 (0.0%) gas / (0x5f7a2d02aa5e9428421fa49bf05951846488327589f9760ab48dd1459168c484) in 0.002s. Peers: 4
2022-02-11 15:20:48.232+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 34 not above current chain height 34.
2022-02-11 15:20:48.232+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 34 not above current chain height 34.
2022-02-11 15:20:48.232+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=34), currently mining on top of 33.
2022-02-11 15:20:48.261+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.262+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:48.299+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.300+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.305+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.305+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.310+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.310+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.315+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.315+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.320+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.320+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.324+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.325+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.329+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.329+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.343+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.344+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:48.378+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.379+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:48.384+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.385+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:48.418+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.419+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:48.622+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.622+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:48.826+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:48.827+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:49.031+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:49.032+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:49.236+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:49.237+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:49.441+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:49.441+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:49.645+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:49.646+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:49.850+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:49.850+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.043+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:50.045+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.058+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.059+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.086+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:50.098+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.098+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.098+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.100+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.100+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.101+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=35, Round=0}
2022-02-11 15:20:50.102+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=35, Round=0}, hash=0xc20dd27c5e1c25d79950a47708f24b8daf7864722fa15dcebd9f7aefb5036722
2022-02-11 15:20:50.144+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:50.147+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x23.
2022-02-11 15:20:50.148+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #35 / 8 tx / 0 pending / 2,574,345 (0.0%) gas / (0xc20dd27c5e1c25d79950a47708f24b8daf7864722fa15dcebd9f7aefb5036722)
2022-02-11 15:20:50.148+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 35 not above current chain height 35.
2022-02-11 15:20:50.148+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=35), currently mining on top of 34.
2022-02-11 15:20:50.263+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.264+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.268+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.269+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.273+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.274+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.278+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.278+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.282+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.283+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.286+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.286+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.289+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.289+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.292+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.292+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:50.306+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.306+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:50.310+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.310+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:50.514+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.515+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:50.720+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.721+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:50.905+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 34, Peers: 4
2022-02-11 15:20:50.906+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:20:50.926+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:50.927+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:51.134+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:51.135+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:51.340+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:51.341+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:51.546+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:51.547+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:51.753+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:51.754+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:51.960+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:51.961+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:52.068+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.070+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:52.127+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:52.137+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.139+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.139+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.141+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.141+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.143+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=36, Round=0}
2022-02-11 15:20:52.144+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=36, Round=0}, hash=0x63a64b282c299aa02cc95069d48ed9e185b68c22c2e0a7aaf7bcf836dc9426c8
2022-02-11 15:20:52.145+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:52.167+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.168+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:52.199+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:52.209+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x24.
2022-02-11 15:20:52.210+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #36 / 1 tx / 0 pending / 7,322,967 (0.0%) gas / (0x63a64b282c299aa02cc95069d48ed9e185b68c22c2e0a7aaf7bcf836dc9426c8)
2022-02-11 15:20:52.210+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 36 not above current chain height 36.
2022-02-11 15:20:52.211+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=36), currently mining on top of 35.
2022-02-11 15:20:52.211+09:00 | EthScheduler-Workers-0 | INFO | PersistBlockTask | Imported #36 / 1 tx / 0 om / 7,322,967 (0.0%) gas / (0x63a64b282c299aa02cc95069d48ed9e185b68c22c2e0a7aaf7bcf836dc9426c8) in 0.000s. Peers: 4
2022-02-11 15:20:52.674+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.675+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:52.711+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.712+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.718+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.719+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.725+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.726+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.731+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.732+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.737+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.737+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.742+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.743+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.748+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.749+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.762+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.763+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:52.798+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.799+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:52.804+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.804+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:52.808+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:52.808+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:53.011+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:53.012+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:53.215+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:53.216+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:53.420+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:53.421+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:53.625+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:53.625+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:53.829+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:53.830+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.034+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.035+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.137+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.180+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.184+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.210+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.220+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.222+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.222+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.224+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.225+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.226+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=37, Round=0}
2022-02-11 15:20:54.227+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=37, Round=0}, hash=0xe0f995522270412257ae8001a1e2c453a48acd08f8666a3a851c712a8e04be9e
2022-02-11 15:20:54.239+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.240+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.271+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.276+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.300+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:54.311+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x25.
2022-02-11 15:20:54.311+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #37 / 8 tx / 0 pending / 8,371,445 (0.0%) gas / (0xe0f995522270412257ae8001a1e2c453a48acd08f8666a3a851c712a8e04be9e)
2022-02-11 15:20:54.312+09:00 | EthScheduler-Workers-2 | INFO | PersistBlockTask | Imported #37 / 8 tx / 0 om / 8,371,445 (0.0%) gas / (0xe0f995522270412257ae8001a1e2c453a48acd08f8666a3a851c712a8e04be9e) in 0.004s. Peers: 4
2022-02-11 15:20:54.312+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 37 not above current chain height 37.
2022-02-11 15:20:54.312+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=37), currently mining on top of 36.
2022-02-11 15:20:54.445+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.446+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.452+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.452+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.457+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.457+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.461+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.461+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.464+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.465+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.467+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.468+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.471+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.471+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.474+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.474+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:54.490+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.490+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:54.494+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.494+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:54.698+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.699+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:54.903+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:54.904+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:55.114+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:55.114+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:55.320+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:55.320+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:55.526+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:55.528+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:55.734+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:55.735+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:55.907+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 36, Peers: 4
2022-02-11 15:20:55.907+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:20:55.941+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:55.942+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:56.069+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.073+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:56.144+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:56.149+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.149+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:56.156+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.158+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.159+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.161+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.162+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.163+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=38, Round=0}
2022-02-11 15:20:56.164+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=38, Round=0}, hash=0xa39bacfbab269557856567b6005a7f260e5d82bcfa83d59c5d9b07f2f68e2075
2022-02-11 15:20:56.165+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:56.220+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:56.232+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x26.
2022-02-11 15:20:56.232+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #38 / 1 tx / 0 pending / 7,323,003 (0.0%) gas / (0xa39bacfbab269557856567b6005a7f260e5d82bcfa83d59c5d9b07f2f68e2075)
2022-02-11 15:20:56.232+09:00 | EthScheduler-Workers-3 | INFO | PersistBlockTask | Imported #38 / 1 tx / 0 om / 7,323,003 (0.0%) gas / (0xa39bacfbab269557856567b6005a7f260e5d82bcfa83d59c5d9b07f2f68e2075) in 0.008s. Peers: 4
2022-02-11 15:20:56.233+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 38 not above current chain height 38.
2022-02-11 15:20:56.233+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=38), currently mining on top of 37.
2022-02-11 15:20:56.355+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.356+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:56.401+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.402+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.410+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.410+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.415+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.415+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.420+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.421+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.427+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.427+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.433+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.433+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.438+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.439+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.444+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.444+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.451+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.452+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.458+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.459+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.477+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.477+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_call
2022-02-11 15:20:56.523+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.523+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:20:56.528+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.529+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:56.532+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.532+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:56.735+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.736+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:56.940+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:56.941+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:57.145+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:57.146+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:57.349+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:57.350+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:57.554+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:57.555+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:57.759+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:57.760+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:57.964+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:57.965+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.057+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:58.060+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.114+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:58.126+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.128+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.128+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.129+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.130+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.131+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=39, Round=0}
2022-02-11 15:20:58.131+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=39, Round=0}, hash=0xf3ce8588ac1d18bf82a76bb94cf8bc4a2bb4c1b3393c1c74d8662609228ecfda
2022-02-11 15:20:58.169+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.169+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.183+09:00 | pool-8-thread-1 | DEBUG | EVM | not caching jumpdest for unhashed contract code
2022-02-11 15:20:58.187+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x27.
2022-02-11 15:20:58.188+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #39 / 11 tx / 0 pending / 3,248,285 (0.0%) gas / (0xf3ce8588ac1d18bf82a76bb94cf8bc4a2bb4c1b3393c1c74d8662609228ecfda)
2022-02-11 15:20:58.189+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 39 not above current chain height 39.
2022-02-11 15:20:58.189+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=39), currently mining on top of 38.
2022-02-11 15:20:58.190+09:00 | EthScheduler-Workers-2 | INFO | PersistBlockTask | Imported #39 / 11 tx / 0 om / 3,248,285 (0.0%) gas / (0xf3ce8588ac1d18bf82a76bb94cf8bc4a2bb4c1b3393c1c74d8662609228ecfda) in 0.000s. Peers: 4
2022-02-11 15:20:58.374+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.375+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.380+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.381+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.385+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.386+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.389+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.389+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.392+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.393+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.396+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.396+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.399+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.399+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.402+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.403+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.405+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.406+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.409+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.409+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.412+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:20:58.412+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionReceipt
2022-02-11 15:20:58.536+09:00 | vert.x-eventloop-thread-5 | DEBUG | JsonRpcHttpService | Connection closed from 10.178.253.73:53606. Total of active connections: 0/80
2022-02-11 15:21:00.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=40, Round=0}
2022-02-11 15:21:00.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=40, Round=0}, hash=0x510b292e6364f708c18699728f37c93eba92b612cdcb79f0b97f3759f9a75354
2022-02-11 15:21:00.019+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x28.
2022-02-11 15:21:00.020+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #40 / 0 tx / 0 pending / 0 (0.0%) gas / (0x510b292e6364f708c18699728f37c93eba92b612cdcb79f0b97f3759f9a75354)
2022-02-11 15:21:00.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 40 not above current chain height 40.
2022-02-11 15:21:00.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=40), currently mining on top of 39.
2022-02-11 15:21:00.908+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 39, Peers: 4
2022-02-11 15:21:00.909+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:02.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=41, Round=0}
2022-02-11 15:21:02.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=41, Round=0}, hash=0x3ca154067cf7382b59e4348953e0f481c429683ba064634c6921375b717718ff
2022-02-11 15:21:02.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x29.
2022-02-11 15:21:02.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #41 / 0 tx / 0 pending / 0 (0.0%) gas / (0x3ca154067cf7382b59e4348953e0f481c429683ba064634c6921375b717718ff)
2022-02-11 15:21:02.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 41 not above current chain height 41.
2022-02-11 15:21:02.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=41), currently mining on top of 40.
2022-02-11 15:21:04.008+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.010+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.011+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=42, Round=0}
2022-02-11 15:21:04.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=42, Round=0}, hash=0x94383f743d8365cc130d51b7366328ee926df2ddcbe49e59764f26aa9124a50d
2022-02-11 15:21:04.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2a.
2022-02-11 15:21:04.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #42 / 0 tx / 0 pending / 0 (0.0%) gas / (0x94383f743d8365cc130d51b7366328ee926df2ddcbe49e59764f26aa9124a50d)
2022-02-11 15:21:04.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 42 not above current chain height 42.
2022-02-11 15:21:04.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=42), currently mining on top of 41.
2022-02-11 15:21:05.910+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 41, Peers: 4
2022-02-11 15:21:05.910+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:06.001+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.011+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=43, Round=0}
2022-02-11 15:21:06.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=43, Round=0}, hash=0xba1b51f8910f0080f6adf3ba9033999754aeba9adfe1a194faf620ec9a5fd788
2022-02-11 15:21:06.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2b.
2022-02-11 15:21:06.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #43 / 0 tx / 0 pending / 0 (0.0%) gas / (0xba1b51f8910f0080f6adf3ba9033999754aeba9adfe1a194faf620ec9a5fd788)
2022-02-11 15:21:06.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 43 not above current chain height 43.
2022-02-11 15:21:06.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=43), currently mining on top of 42.
2022-02-11 15:21:06.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 43 not above current chain height 43.
2022-02-11 15:21:07.886+09:00 | vert.x-eventloop-thread-1 | DEBUG | PeerDiscoveryController | Peer table refresh triggered by insufficient peers
2022-02-11 15:21:07.887+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Start peer search.
2022-02-11 15:21:07.887+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Skipping bonding round because no candidates are available
2022-02-11 15:21:07.887+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Initiating neighbours round with 3 candidates from 3 tracked nodes
2022-02-11 15:21:07.897+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:07.899+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:07.917+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:07.917+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Skipping bonding round because no candidates are available
2022-02-11 15:21:07.917+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Iterative peer search complete. 3 peers processed over 2 rounds.
2022-02-11 15:21:08.025+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.027+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.029+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.029+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.035+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.038+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=44, Round=0}
2022-02-11 15:21:08.038+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=44, Round=0}, hash=0x78c569baafaee6c022a9f0ce47662add19c83bc75c3f3774be5c54b932f68274
2022-02-11 15:21:08.040+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2c.
2022-02-11 15:21:08.040+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #44 / 0 tx / 0 pending / 0 (0.0%) gas / (0x78c569baafaee6c022a9f0ce47662add19c83bc75c3f3774be5c54b932f68274)
2022-02-11 15:21:08.040+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=44), currently mining on top of 43.
2022-02-11 15:21:08.071+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 44 not above current chain height 44.
2022-02-11 15:21:10.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=45, Round=0}
2022-02-11 15:21:10.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=45, Round=0}, hash=0xbdfe69d1a6de4c9859353b64ef41297b8f1c5100cbf134da71241a55f1e45cd5
2022-02-11 15:21:10.019+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2d.
2022-02-11 15:21:10.020+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #45 / 0 tx / 0 pending / 0 (0.0%) gas / (0xbdfe69d1a6de4c9859353b64ef41297b8f1c5100cbf134da71241a55f1e45cd5)
2022-02-11 15:21:10.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 45 not above current chain height 45.
2022-02-11 15:21:10.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=45), currently mining on top of 44.
2022-02-11 15:21:10.911+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 44, Peers: 4
2022-02-11 15:21:10.911+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:12.007+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=46, Round=0}
2022-02-11 15:21:12.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=46, Round=0}, hash=0x5a02737a92a6af16e226113553afe037fa66f9f931fe61d186715703410153e6
2022-02-11 15:21:12.021+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2e.
2022-02-11 15:21:12.022+09:00 | EthScheduler-Workers-0 | INFO | PersistBlockTask | Imported #46 / 0 tx / 0 om / 0 (0.0%) gas / (0x5a02737a92a6af16e226113553afe037fa66f9f931fe61d186715703410153e6) in 0.000s. Peers: 4
2022-02-11 15:21:12.022+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #46 / 0 tx / 0 pending / 0 (0.0%) gas / (0x5a02737a92a6af16e226113553afe037fa66f9f931fe61d186715703410153e6)
2022-02-11 15:21:12.023+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 46 not above current chain height 46.
2022-02-11 15:21:12.023+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=46), currently mining on top of 45.
2022-02-11 15:21:14.000+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=47, Round=0}
2022-02-11 15:21:14.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=47, Round=0}, hash=0xe4ece844311dec309b218125f8e9161b09e252d5d39dc7609e0a0fd50c83822c
2022-02-11 15:21:14.020+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x2f.
2022-02-11 15:21:14.021+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #47 / 0 tx / 0 pending / 0 (0.0%) gas / (0xe4ece844311dec309b218125f8e9161b09e252d5d39dc7609e0a0fd50c83822c)
2022-02-11 15:21:14.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 47 not above current chain height 47.
2022-02-11 15:21:14.021+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=47), currently mining on top of 46.
2022-02-11 15:21:14.022+09:00 | EthScheduler-Workers-3 | INFO | PersistBlockTask | Imported #47 / 0 tx / 0 om / 0 (0.0%) gas / (0xe4ece844311dec309b218125f8e9161b09e252d5d39dc7609e0a0fd50c83822c) in 0.000s. Peers: 4
2022-02-11 15:21:15.912+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 46, Peers: 4
2022-02-11 15:21:15.912+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:16.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.010+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=48, Round=0}
2022-02-11 15:21:16.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=48, Round=0}, hash=0xb0d44d41690b54152e5fdd4dace0d4e24dad05c4a027d1dd418024da3cc02fde
2022-02-11 15:21:16.019+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x30.
2022-02-11 15:21:16.022+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #48 / 0 tx / 0 pending / 0 (0.0%) gas / (0xb0d44d41690b54152e5fdd4dace0d4e24dad05c4a027d1dd418024da3cc02fde)
2022-02-11 15:21:16.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 48 not above current chain height 48.
2022-02-11 15:21:16.023+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=48), currently mining on top of 47.
2022-02-11 15:21:18.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=49, Round=0}
2022-02-11 15:21:18.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=49, Round=0}, hash=0x6570f53ae1acf41dbcd7ae5a5898bfd0c582602b5e5840bfe7178d963928754a
2022-02-11 15:21:18.019+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x31.
2022-02-11 15:21:18.020+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #49 / 0 tx / 0 pending / 0 (0.0%) gas / (0x6570f53ae1acf41dbcd7ae5a5898bfd0c582602b5e5840bfe7178d963928754a)
2022-02-11 15:21:18.020+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 49 not above current chain height 49.
2022-02-11 15:21:18.020+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=49), currently mining on top of 48.
2022-02-11 15:21:18.021+09:00 | EthScheduler-Workers-1 | INFO | PersistBlockTask | Imported #49 / 0 tx / 0 om / 0 (0.0%) gas / (0x6570f53ae1acf41dbcd7ae5a5898bfd0c582602b5e5840bfe7178d963928754a) in 0.000s. Peers: 4
2022-02-11 15:21:20.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.008+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=50, Round=0}
2022-02-11 15:21:20.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=50, Round=0}, hash=0x8796423b9a5771f23711cf424983f373110373d7538a0cb368be79457888227e
2022-02-11 15:21:20.018+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x32.
2022-02-11 15:21:20.019+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #50 / 0 tx / 0 pending / 0 (0.0%) gas / (0x8796423b9a5771f23711cf424983f373110373d7538a0cb368be79457888227e)
2022-02-11 15:21:20.019+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 50 not above current chain height 50.
2022-02-11 15:21:20.019+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=50), currently mining on top of 49.
2022-02-11 15:21:20.913+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 49, Peers: 4
2022-02-11 15:21:20.913+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:22.002+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=51, Round=0}
2022-02-11 15:21:22.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=51, Round=0}, hash=0x150e4dd9371a57f93638fcd9732a137e90d148233282642416e7fa8c73a0291e
2022-02-11 15:21:22.021+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x33.
2022-02-11 15:21:22.022+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #51 / 0 tx / 0 pending / 0 (0.0%) gas / (0x150e4dd9371a57f93638fcd9732a137e90d148233282642416e7fa8c73a0291e)
2022-02-11 15:21:22.022+09:00 | EthScheduler-Workers-2 | INFO | PersistBlockTask | Imported #51 / 0 tx / 0 om / 0 (0.0%) gas / (0x150e4dd9371a57f93638fcd9732a137e90d148233282642416e7fa8c73a0291e) in 0.000s. Peers: 4
2022-02-11 15:21:22.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 51 not above current chain height 51.
2022-02-11 15:21:22.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=51), currently mining on top of 50.
2022-02-11 15:21:24.008+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=52, Round=0}
2022-02-11 15:21:24.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=52, Round=0}, hash=0x828fd322f1d9d9d8fbc77dc3893a63feae17b8722f2ec8739fcbba91eead5929
2022-02-11 15:21:24.021+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x34.
2022-02-11 15:21:24.022+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #52 / 0 tx / 0 pending / 0 (0.0%) gas / (0x828fd322f1d9d9d8fbc77dc3893a63feae17b8722f2ec8739fcbba91eead5929)
2022-02-11 15:21:24.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 52 not above current chain height 52.
2022-02-11 15:21:24.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=52), currently mining on top of 51.
2022-02-11 15:21:25.914+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 51, Peers: 4
2022-02-11 15:21:25.914+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:26.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.007+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=53, Round=0}
2022-02-11 15:21:26.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=53, Round=0}, hash=0x6558d2c459b3e850c6c5b02056c4d929c062d263078b9a7bf6975594af9f8dac
2022-02-11 15:21:26.016+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x35.
2022-02-11 15:21:26.017+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #53 / 0 tx / 0 pending / 0 (0.0%) gas / (0x6558d2c459b3e850c6c5b02056c4d929c062d263078b9a7bf6975594af9f8dac)
2022-02-11 15:21:26.017+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 53 not above current chain height 53.
2022-02-11 15:21:26.017+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=53), currently mining on top of 52.
2022-02-11 15:21:28.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=54, Round=0}
2022-02-11 15:21:28.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=54, Round=0}, hash=0xba57af2dc4120c4adb0d51397e28fc6627fd6dad13d9b970e61dbad7011f8541
2022-02-11 15:21:28.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x36.
2022-02-11 15:21:28.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #54 / 0 tx / 0 pending / 0 (0.0%) gas / (0xba57af2dc4120c4adb0d51397e28fc6627fd6dad13d9b970e61dbad7011f8541)
2022-02-11 15:21:28.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 54 not above current chain height 54.
2022-02-11 15:21:28.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=54), currently mining on top of 53.
2022-02-11 15:21:30.001+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.009+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.013+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=55, Round=0}
2022-02-11 15:21:30.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=55, Round=0}, hash=0x9f2044bffe9debc1cc229e2bdfc2469a3ea5d08306fce731715fa9112b5b5b9b
2022-02-11 15:21:30.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x37.
2022-02-11 15:21:30.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #55 / 0 tx / 0 pending / 0 (0.0%) gas / (0x9f2044bffe9debc1cc229e2bdfc2469a3ea5d08306fce731715fa9112b5b5b9b)
2022-02-11 15:21:30.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 55 not above current chain height 55.
2022-02-11 15:21:30.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=55), currently mining on top of 54.
2022-02-11 15:21:30.915+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 54, Peers: 4
2022-02-11 15:21:30.915+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:32.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.010+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=56, Round=0}
2022-02-11 15:21:32.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=56, Round=0}, hash=0xcbbbc2c437102643ed315279e8949a11b1da365bd9a0a387b46fd7c99443745f
2022-02-11 15:21:32.017+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x38.
2022-02-11 15:21:32.018+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #56 / 0 tx / 0 pending / 0 (0.0%) gas / (0xcbbbc2c437102643ed315279e8949a11b1da365bd9a0a387b46fd7c99443745f)
2022-02-11 15:21:32.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 56 not above current chain height 56.
2022-02-11 15:21:32.018+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=56), currently mining on top of 55.
2022-02-11 15:21:34.006+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.011+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.012+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=57, Round=0}
2022-02-11 15:21:34.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=57, Round=0}, hash=0x9964803018fba19cca6f971dfc6d7c6dd108baa645368e12b35e97ca38a24f30
2022-02-11 15:21:34.018+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x39.
2022-02-11 15:21:34.019+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #57 / 0 tx / 0 pending / 0 (0.0%) gas / (0x9964803018fba19cca6f971dfc6d7c6dd108baa645368e12b35e97ca38a24f30)
2022-02-11 15:21:34.019+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 57 not above current chain height 57.
2022-02-11 15:21:34.019+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=57), currently mining on top of 56.
2022-02-11 15:21:35.916+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 56, Peers: 4
2022-02-11 15:21:35.916+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:36.007+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.011+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.016+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=58, Round=0}
2022-02-11 15:21:36.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=58, Round=0}, hash=0x62b220bb87198a698e1ec87e59a3644fb5cf61022e558b64c8c89fc117989380
2022-02-11 15:21:36.019+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x3a.
2022-02-11 15:21:36.020+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #58 / 0 tx / 0 pending / 0 (0.0%) gas / (0x62b220bb87198a698e1ec87e59a3644fb5cf61022e558b64c8c89fc117989380)
2022-02-11 15:21:36.020+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 58 not above current chain height 58.
2022-02-11 15:21:36.020+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=58), currently mining on top of 57.
2022-02-11 15:21:37.893+09:00 | vert.x-eventloop-thread-1 | DEBUG | PeerDiscoveryController | Peer table refresh triggered by insufficient peers
2022-02-11 15:21:37.893+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Start peer search.
2022-02-11 15:21:37.894+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Skipping bonding round because no candidates are available
2022-02-11 15:21:37.894+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Initiating neighbours round with 3 candidates from 3 tracked nodes
2022-02-11 15:21:37.901+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:37.902+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:37.904+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Received neighbours packet with 3 neighbours
2022-02-11 15:21:37.904+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Skipping bonding round because no candidates are available
2022-02-11 15:21:37.904+09:00 | vert.x-eventloop-thread-1 | DEBUG | RecursivePeerRefreshState | Iterative peer search complete. 3 peers processed over 2 rounds.
2022-02-11 15:21:38.001+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Creating proposed block. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.014+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.015+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Sending commit message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a prepare message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.017+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.018+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Received a commit message. round=ConsensusRoundIdentifier{Sequence=59, Round=0}
2022-02-11 15:21:38.019+09:00 | pool-8-thread-1 | DEBUG | IbftRound | Importing block to chain. round=ConsensusRoundIdentifier{Sequence=59, Round=0}, hash=0x198763a8bcd5de129939b29b3cc99b0d97d32b247e7e7e80cb9f65616213e204
2022-02-11 15:21:38.021+09:00 | pool-8-thread-1 | DEBUG | TransactionLogBloomCacher | Caching logs bloom for block 0x3b.
2022-02-11 15:21:38.022+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Produced #59 / 0 tx / 0 pending / 0 (0.0%) gas / (0x198763a8bcd5de129939b29b3cc99b0d97d32b247e7e7e80cb9f65616213e204)
2022-02-11 15:21:38.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | Discarding a message which targets a height 59 not above current chain height 59.
2022-02-11 15:21:38.022+09:00 | pool-8-thread-1 | DEBUG | BaseBftController | New chain head detected (block number=59), currently mining on top of 58.
2022-02-11 15:21:38.024+09:00 | EthScheduler-Workers-0 | INFO | PersistBlockTask | Imported #59 / 0 tx / 0 om / 0 (0.0%) gas / (0x198763a8bcd5de129939b29b3cc99b0d97d32b247e7e7e80cb9f65616213e204) in 0.000s. Peers: 4
2022-02-11 15:21:38.693+09:00 | vert.x-eventloop-thread-5 | DEBUG | JsonRpcHttpService | Opened connection from 10.178.253.73:53754. Total of active connections: 1/80
2022-02-11 15:21:38.694+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.695+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_getTransactionCount
2022-02-11 15:21:38.758+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.759+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.867+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.876+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.893+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.894+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.908+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.909+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.922+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.923+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.948+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.949+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:38.997+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:38.998+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.010+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.010+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.028+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.028+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.043+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.044+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.056+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.056+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.069+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.070+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.080+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.081+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.091+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.092+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.104+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.106+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.118+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.119+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.136+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.137+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.146+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.147+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.157+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.157+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.171+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.172+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.185+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.191+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.202+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.202+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.212+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.212+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.222+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.223+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.232+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.234+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.245+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.245+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.258+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.259+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.274+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.274+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.283+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.283+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.293+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.293+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.304+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.304+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.313+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.314+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.322+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.322+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.330+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.330+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.339+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.340+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.347+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.350+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.359+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.359+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.401+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.403+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.411+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.411+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.419+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.422+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.432+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.432+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.440+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.441+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.449+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.449+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.456+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.457+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.464+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.465+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.472+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.472+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.487+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.487+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.494+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.495+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.503+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.503+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.512+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.520+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.528+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.528+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.540+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.540+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.550+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.550+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.558+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.558+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.566+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.569+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.581+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.584+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.591+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.592+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.600+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.600+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.608+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.608+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.616+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.619+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.627+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.628+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.636+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.636+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.644+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.645+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.655+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.656+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.664+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.665+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.673+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.674+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.697+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.700+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.726+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.727+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.831+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.831+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.838+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.839+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.845+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.846+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.853+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.857+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.865+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.865+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.872+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.873+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.881+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.882+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.892+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.893+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.900+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.900+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.909+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.910+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.918+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.918+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.925+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.926+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.934+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.935+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.943+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.944+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.954+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.955+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.963+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.963+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:39.973+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:39.973+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.012+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.013+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.026+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.027+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.038+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.045+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.054+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.055+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.063+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.063+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.101+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.102+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.111+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.112+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.145+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.145+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.151+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.152+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.158+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.159+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.166+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.167+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.173+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.173+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.183+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.183+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.191+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.191+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.199+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.204+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.213+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.213+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.221+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.222+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.231+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.231+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.240+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.244+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.251+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.252+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.259+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.260+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.267+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.267+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.275+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.276+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.285+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.285+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.293+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.294+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.300+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.301+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.310+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.311+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.317+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.318+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.326+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.326+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.333+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.335+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.343+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.344+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.350+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.351+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.357+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.358+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.366+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.367+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.377+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.378+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.386+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.387+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.394+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.394+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.429+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.429+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.439+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.440+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.447+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.447+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.455+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.455+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.487+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.488+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.497+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.497+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.505+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.506+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.516+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.517+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.523+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.523+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.529+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.530+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.536+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.536+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.543+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.543+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.552+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.553+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.560+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.563+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.595+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.595+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.604+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.606+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.612+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.612+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.619+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.619+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.626+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.627+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.633+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.633+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.641+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.642+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.648+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.649+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.659+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.659+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.666+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.666+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.705+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.705+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.712+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.712+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.719+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.719+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.755+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.755+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.761+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.761+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.767+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.768+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.774+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.774+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.783+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.784+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.790+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.791+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.800+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.804+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.813+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.814+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.820+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.821+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.831+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.831+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.838+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.839+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.847+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.848+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.855+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.855+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.864+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.864+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.872+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.872+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.879+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.879+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.886+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.887+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.893+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.893+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.903+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.903+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.909+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.910+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.916+09:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: 58, Peers: 4
2022-02-11 15:21:40.916+09:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 4 peers currently connected.
2022-02-11 15:21:40.923+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.923+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.933+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.933+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:40.940+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:40.940+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.026+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.027+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.034+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.035+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.080+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.080+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.088+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.088+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.095+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.095+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.106+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.107+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.115+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.115+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.121+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.121+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.130+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.130+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.137+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.137+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.144+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.145+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.151+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.152+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.159+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.159+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.167+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.167+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.173+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.174+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.182+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.183+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.190+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.191+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.200+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.214+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.226+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.226+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.233+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.234+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.241+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.241+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.248+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.248+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.255+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.255+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.261+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.264+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.271+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.271+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.278+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.278+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.286+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.286+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.292+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.293+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.301+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.302+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.307+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.308+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.314+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.314+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.321+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.345+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.352+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.353+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.360+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.360+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.366+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.367+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.374+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.374+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.395+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.406+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.434+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.434+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.444+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.445+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.480+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.480+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.495+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.496+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.502+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.502+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.540+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.541+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.546+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.547+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.553+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.553+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.560+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.560+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.567+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.567+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.573+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.585+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.592+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.592+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.599+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.600+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.606+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.607+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.614+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.615+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.621+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.633+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.641+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.642+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.648+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.648+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.655+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.656+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.662+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.663+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.670+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.670+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.679+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.691+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.700+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.700+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.707+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.707+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.714+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.714+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.720+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.720+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.729+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.732+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.737+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.738+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.754+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.754+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.760+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.760+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.766+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.767+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.773+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.774+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.780+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.781+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.786+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.787+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.794+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.795+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.800+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.802+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.810+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.811+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.817+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.818+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.826+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.826+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.832+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.833+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.839+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.839+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.846+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.846+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.852+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.853+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.860+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.860+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.866+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.866+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.872+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.872+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.878+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.878+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.908+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.909+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.916+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.916+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.922+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.922+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.929+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.929+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.935+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.935+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.943+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.943+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.959+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.962+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.969+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.969+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.976+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.976+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:41.993+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:41.993+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.009+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.010+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.019+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.020+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.023+09:00 | pool-8-thread-1 | DEBUG | IbftBlockHeightManager | Round has expired, creating PreparedCertificate and notifying peers. round=ConsensusRoundIdentifier{Sequence=60, Round=0}
2022-02-11 15:21:42.023+09:00 | pool-8-thread-1 | DEBUG | IbftBlockHeightManager | Starting new round 1
2022-02-11 15:21:42.027+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.028+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.028+09:00 | pool-8-thread-1 | DEBUG | IbftBlockHeightManager | Received sufficient RoundChange messages to change round to targetRound=ConsensusRoundIdentifier{Sequence=60, Round=1}
2022-02-11 15:21:42.043+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.043+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.052+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.053+09:00 | vert.x-worker-thread-13 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.059+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.060+09:00 | vert.x-worker-thread-14 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.066+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.066+09:00 | vert.x-worker-thread-15 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.073+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.074+09:00 | vert.x-worker-thread-16 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.082+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.082+09:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.088+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.088+09:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.096+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.096+09:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.103+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.103+09:00 | vert.x-worker-thread-1 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.110+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.111+09:00 | vert.x-worker-thread-0 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.117+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.117+09:00 | vert.x-worker-thread-4 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.125+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.125+09:00 | vert.x-worker-thread-3 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.134+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.135+09:00 | vert.x-worker-thread-2 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.142+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.142+09:00 | vert.x-worker-thread-6 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.148+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.166+09:00 | vert.x-worker-thread-5 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.174+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.174+09:00 | vert.x-worker-thread-7 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.185+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.185+09:00 | vert.x-worker-thread-8 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.192+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.193+09:00 | vert.x-worker-thread-9 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.202+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.202+09:00 | vert.x-worker-thread-10 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.219+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.219+09:00 | vert.x-worker-thread-11 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.227+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.
2022-02-11 15:21:42.228+09:00 | vert.x-worker-thread-12 | DEBUG | JsonRpcHttpService | JSON-RPC request -> eth_sendRawTransaction
2022-02-11 15:21:42.243+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context.

@sudo1991
Copy link
Author

sudo1991 commented Feb 11, 2022

#59 Block mining time is
2022-02-11 15:21:38.024+09:00 | EthScheduler-Workers-0 | INFO | PersistBlockTask | Imported https://github.com/hyperledger/besu/pull/59 / 0 tx / 0 om / 0 (0.0%) gas / (0x198763a8bcd5de129939b29b3cc99b0d97d32b247e7e7e80cb9f65616213e204) in 0.000s. Peers: 4
JMeter test start at
2022-02-11 15:21:39,446 INFO o.a.j.e.StandardJMeterEngine: Running the test!
#60 Block mining time is
2022-02-11 15:47:38.430+09:00 | pool-8-thread-1 | INFO | IbftBesuControllerBuilder | Imported #60 / 400 tx / 0 pending / 2,333,942,033 (0.0%) gas / (0xe47e18a2d8b570db2b71e3c34249dd9093d274171c2020c55c1d2c02808ff9ae)

In conclusion, it took 25 minutes and 59 seconds from the start of the test to mining one block.
The same log as that was repeated for 25 minutes and 59 seconds.

@macfarla
Copy link
Contributor

These log messages 2022-02-11 15:21:42.243+09:00 | vert.x-eventloop-thread-5 | DEBUG | B3PropagatorExtractorMultipleHeaders | Invalid TraceId in B3 header: null'. Returning INVALID span context. are to do with metrics, they are distracting but nothing to do with blocks, mining or transactions. You can ignore those.

@macfarla
Copy link
Contributor

So with 0 transactions being fired, you're getting blocks every 2s. And then you fire 400 tx at a rate of 75 per second and things slow down. What happens if you fire 5, 10 or 20 per second?

Alternatively, what happens if you lower the block gas limit?

@macfarla macfarla added can't reproduce P4 Low (ex: Node doesn't start up when the configuration file has unexpected "end-of-line" character) labels Feb 17, 2022
@MadelineMurray
Copy link
Contributor

hi @SeongUkJeon - we've been unable to reproduce so closing this one. If you've got more information or questions, please reopen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working can't reproduce P4 Low (ex: Node doesn't start up when the configuration file has unexpected "end-of-line" character)
Projects
None yet
Development

No branches or pull requests

4 participants