-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnohup.out
1525 lines (1525 loc) · 894 KB
/
nohup.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
I[2022-12-31|11:43:18.844][33627] Starting node. module=main mode=
I[2022-12-31|11:43:19.677][33627:1] The database storage strategy. module=main fast-storage=true
I[2022-12-31|11:43:19.684][33627:1] Starting ABCI with Tendermint. module=main
I[2022-12-31|11:43:19.684][33627:1] Publishing logs is disabled. module=main
I[2022-12-31|11:43:19.810][33627:1] Starting OKC. module=main GenesisHeight=0 MercuryHeight=1 VenusHeight=1 Venus1Height=1 Venus2Height=0 Venus3Height=1 Veneus4Height=0 EarthHeight=0 MarsHeight=0
I[2022-12-31|11:43:19.853][33627:1] All flags:
abci = socket
active-view-change = false
address = tcp://0.0.0.0:26658
append-pid = false
applyblock-pprof-time = -1
auto_fast_sync = true
block-compress-flag = 0
block-compress-threshold = 1024000
block-compress-type = 0
block-part-size = 65536
broadcast-mode = sync
broadcast-period-second = 10
chain-id = exchain-101
check_watchdb = false
close-mutex = false
commit-gap-height = 100
commit-gap-offset = 0
compress-flag = 0
compress-type = 0
config.apollo =
config.enable-dynamic = false
consensus-role =
consensus-testcase =
consensus.create_empty_blocks = true
consensus.create_empty_blocks_interval = 0s
consensus.peer_gossip_sleep_duration = 100ms
consensus.peer_query_maj23_sleep_duration = 2s
consensus.skip_timeout_commit = false
consensus.switch_to_fast_sync_interval = 30s
consensus.timeout_commit = 2s
consensus.timeout_consensus = 1s
consensus.timeout_precommit = 1s
consensus.timeout_precommit_delta = 500ms
consensus.timeout_prevote = 1s
consensus.timeout_prevote_delta = 500ms
consensus.timeout_propose = 3s
consensus.timeout_propose_delta = 500ms
consensus.waiting = true
consensus.wal_file = data/cs.wal/wal
cors =
cpu-profile =
db_backend = goleveldb
db_dir = data
debug-api = false
debug.gc-interval = 0
deliver-txs-mode = 0
delta-buffer-size = 10
delta-redis-auth =
delta-redis-db = 0
delta-redis-expire = 300
delta-redis-url = localhost:6379
delta-version = 10
disable-abci-query-mutex = true
disable-checktx = false
disable-sanity = false
discard-fast-storage = false
download-delta = false
dynamic-gp-check-blocks = 5
dynamic-gp-coefficient = 1
dynamic-gp-max-gas-used = -1
dynamic-gp-max-tx-num = 300
dynamic-gp-mode = 2
dynamic-gp-weight = 80
elapsed = Round=1,CommitRound=1,Produce=1
enable-analyzer = false
enable-blockpart-ack = false
enable-bloom-filter = true
enable-concurrency = false
enable-dynamic-gp = false
enable-flat-kv = false
enable-gid = true
enable-preruntx = true
enable-repair-state = false
enable-store-load-async = false
enable-tx-pool = false
enable-wtx = false
event-block-time = false
evm-import-mode = default
evm-import-path =
export-keystore = false
fast-lru = 1000
fast-query = false
fast-query-threshold = 10
fast_sync = true
fastsync-gap = 20
fastsync.version = v0
filter_peers = false
gas-limit-buffer = 50
genesis_file = config/genesis.json
genesis_hash =
goleveldb.opts =
gops = false
goroutine-num = 0
grpc.address = 0.0.0.0:9090
gu_factor = 0.4
halt-height = 0
halt-time = 0
help = false
home = ./data/exchain-101
iavl-cache-init-ratio = 1
iavl-cache-size = 10000000
iavl-commit-async-no-batch = false
iavl-commit-interval-height = 10
iavl-enable-async-commit = true
iavl-enable-fast-storage = false
iavl-fast-storage-cache-size = 10000000
iavl-height-orphans-cache-size = 8
iavl-max-committed-height-num = 30
iavl-min-commit-item-count = 1000000
iavl-output-modules = [evm=1,acc=1]
instrumentation.log_file = /Users/meng/.exchaind/exchaind.log
instrumentation.log_stdout = true
instrumentation.max_open_connections = 3
instrumentation.namespace = tendermint
instrumentation.prometheus = true
instrumentation.prometheus_listen_addr = :26660
inter-block-cache = true
inv-check-period = 0
keyring-backend = test
local-rpc-port = 36657
local_perf =
log-server =
log_file = json
log_format = plain
log_level = main:info
log_stdout = true
logs-height-span = 2000
max-open = 1000
mempool.broadcast = true
mempool.cache_size = 300000
mempool.check_tx_cost = false
mempool.enable-pgu = false
mempool.enable_delete_min_gp_tx = false
mempool.enable_pending_pool = false
mempool.force_recheck_gap = 2000
mempool.max_gas_used_per_block = -1
mempool.max_tx_bytes = 1048576
mempool.max_tx_num_per_block = 300
mempool.max_txs_bytes = 1073741824
mempool.node_key_whitelist = []
mempool.pending_pool_max_tx_per_address = 100
mempool.pending_pool_period = 3
mempool.pending_pool_reserve_blocks = 100
mempool.pending_pool_size = 50000
mempool.pending_remove_event = false
mempool.pgu-adjustment = 1
mempool.recheck = false
mempool.sealed = false
mempool.size = 200000
mempool.sort_tx_by_gp = true
mempool.tx_price_bump = 10
minimum-gas-prices = 0.0000000001okt
moniker = oec
multi-cache = false
multi-cache-acc = 0
multi-cache-storage = 0
netstat =
node-mode =
node_key_file = config/node_key.json
oss-access-key-id =
oss-access-key-secret =
oss-bucket-name =
oss-enable = false
oss-endpoint =
oss-object-path =
p2p.addr_book_file = config/addrbook.json
p2p.addr_book_strict = true
p2p.allow_duplicate_ip = false
p2p.dial_timeout = 3s
p2p.external_address =
p2p.flush_throttle_timeout = 100ms
p2p.handshake_timeout = 20s
p2p.laddr = tcp://0.0.0.0:36656
p2p.max_num_inbound_peers = 40
p2p.max_num_outbound_peers = 10
p2p.max_packet_msg_payload_size = 1024
p2p.persistent_peers =
p2p.persistent_peers_max_dial_period = 0s
p2p.pex = true
p2p.private_peer_ids =
p2p.recv_rate = 5120000
p2p.seed_mode = false
p2p.seeds =
p2p.send_rate = 5120000
p2p.sentry_addrs =
p2p.unconditional_peer_ids =
p2p.upnp = false
pendingtx.kafka-addr =
pendingtx.kafka-topic =
personal-api = true
pprof-auto-dump = false
pprof-collect-interval = 5s
pprof-cool-down = 3m
pprof-cpu-trigger-percent-abs = 50
pprof-cpu-trigger-percent-diff = 50
pprof-cpu-trigger-percent-min = 45
pprof-mem-trigger-percent-abs = 75
pprof-mem-trigger-percent-diff = 50
pprof-mem-trigger-percent-min = 70
pprof-trigger-abci-elapsed = 5000
pprof-use-cgroup = false
priv_validator_key_file = config/priv_validator_key.json
priv_validator_laddr =
priv_validator_state_file = data/priv_validator_state.json
prof_laddr = localhost:6060
proxy_app = tcp://127.0.0.1:26658
pruning = nothing
pruning-interval = 0
pruning-keep-every = 0
pruning-keep-recent = 0
pruning-max-worldstate-num = 0
rest.application_name =
rest.external_laddr = 127.0.0.1:26659
rest.laddr = tcp://0.0.0.0:36659
rest.nacos_namespace_id =
rest.nacos_urls =
rest.path_prefix = exchain
rest.unlock_key =
rest.unlock_key_home = /Users/meng/.exchaincli
rocksdb.opts =
rpc-block-cache = 30000
rpc-tx-cache = 100000
rpc.cors_allowed_headers = [Origin Accept Content-Type X-Requested-With X-Server-Time]
rpc.cors_allowed_methods = [HEAD GET POST]
rpc.cors_allowed_origins = []
rpc.disable-api =
rpc.enable-monitor = false
rpc.enable-multi-call = false
rpc.external_laddr = 0.0.0.0:36657
rpc.grpc_laddr =
rpc.grpc_max_open_connections = 900
rpc.laddr = tcp://0.0.0.0:36657
rpc.logs-limit = 0
rpc.logs-timeout = 60
rpc.max_body_bytes = 1000000
rpc.max_header_bytes = 1048576
rpc.max_open_connections = 900
rpc.max_subscription_clients = 100
rpc.max_subscriptions_per_client = 1000
rpc.rate-limit-api =
rpc.rate-limit-burst = 1
rpc.rate-limit-count = 0
rpc.timeout_broadcast_tx_commit = 10s
rpc.tls_cert_file =
rpc.tls_key_file =
rpc.tmrpc_application_name =
rpc.tmrpc_nacos_namespace_id =
rpc.tmrpc_nacos_urls =
rpc.unsafe = true
signature-cache-size = 200000
trace = true
trace-store =
trie.account-store-cache = 32
trie.cache-size = 2048
trie.dirty-disabled = true
trie.imgs-limit = 4
trie.nodes-limit = 256
trie.rocksdb-batch-size = 10
trie.use-composite-key = false
trie.write-ahead = false
tx-pool-cap = 10000
tx_index.index_all_keys = true
tx_index.index_keys =
tx_index.indexer = kv
unsafe-skip-upgrades = []
upload-delta = false
wasm.memory_cache_size = 100
wasm.query_gas_limit = 3000000
wasm.simulation_gas_limit =
ws.max-subscriptions = 15
ws.max_connections = 20000
ws.sub_channel_length = 100
wsport = 8546
. module=main
I[2022-12-31|11:43:22.036][33627:1] startInProcess. module=main ConsensusStateChainID=exchain-101 GenesisDocChainID=exchain-101
E[2022-12-31|11:43:22.037][33627:274] Profile server. module=node err="listen tcp 127.0.0.1:6060: bind: address already in use"
E[2022-12-31|11:43:22.037][33627:279] Prometheus HTTP server ListenAndServe. module=node err="listen tcp :26660: bind: address already in use"
E[2022-12-31|11:43:22.113][33627:354] http error:. module=websocket-server err="unsupported key type"
I[2022-12-31|11:43:24.085][33627:207] Height<569>, Tx<0>, SimTx<569:0>, BlockSize<489>, BTInterval<206506ms>, LastBlockTime<2011ms>, GasUsed<0>, SimGasUsed<569:0>, InvalidTxs<0>, lastRun<318ms>, RunTx<ApplyBlock<86ms>, abci<43ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.09|0.09|0.09|0.09>, persistDetails<preChange<0ms>, flushCache<1ms>, commitStores<0ms>, flushMeta<39ms>>, Iavl[getnode<388>, rdb<291>, rdbTs<4ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>]. module=main
I[2022-12-31|11:43:26.085][33627:207] Height<570>, Tx<0>, SimTx<570:0>, BlockSize<487>, BTInterval<2086ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<570:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.07|0.07|0.07|0.07>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<19ms>>, Iavl[getnode<233>, rdb<14>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<73ms>, Commit-0-0<104ms>, RunTx-0<22ms>, Waiting<1621ms>]. module=main
I[2022-12-31|11:43:28.085][33627:207] Height<571>, Tx<0>, SimTx<571:0>, BlockSize<489>, BTInterval<1986ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<571:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.05|0.05|0.05|0.05>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<16>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<119ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1644ms>]. module=main
I[2022-12-31|11:43:30.086][33627:207] Height<572>, Tx<0>, SimTx<572:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<572:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.04|0.04|0.04|0.04>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<240>, rdb<12>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1784ms>]. module=main
I[2022-12-31|11:43:32.086][33627:207] Height<573>, Tx<1>, SimTx<573:0>, BlockSize<837>, BTInterval<2068ms>, LastBlockTime<2000ms>, GasUsed<165350>, SimGasUsed<573:200000>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.04|0.04|0.04|0.04>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<384>, rdb<21>, rdbTs<0ms>, savenode<102>], DeliverTxs[RunAnte<1ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1977ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<87ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1669ms>]. module=main
I[2022-12-31|11:43:34.086][33627:207] Height<574>, Tx<0>, SimTx<574:0>, BlockSize<523>, BTInterval<1932ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<574:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.04|0.04|0.04|0.04>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<237>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<21ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:43:36.086][33627:207] Height<575>, Tx<0>, SimTx<575:0>, BlockSize<487>, BTInterval<2046ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<575:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.03|0.03|0.03|0.03>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<14>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<123ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1654ms>]. module=main
I[2022-12-31|11:43:38.086][33627:207] Height<576>, Tx<0>, SimTx<576:0>, BlockSize<487>, BTInterval<2031ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<576:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.03|0.03|0.03|0.03>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<302>, rdb<14>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<97ms>, Precommit-0<49ms>, Commit-0-0<61ms>, RunTx-0<22ms>, Waiting<1697ms>]. module=main
I[2022-12-31|11:43:40.086][33627:207] Height<577>, Tx<0>, SimTx<577:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<577:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.03|0.03|0.03|0.03>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<239>, rdb<10>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1713ms>]. module=main
I[2022-12-31|11:43:42.086][33627:207] Height<578>, Tx<0>, SimTx<578:0>, BlockSize<487>, BTInterval<2045ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<578:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.03|0.03|0.03|0.03>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<236>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<73ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1668ms>]. module=main
I[2022-12-31|11:43:44.086][33627:207] Height<579>, Tx<0>, SimTx<579:0>, BlockSize<489>, BTInterval<1983ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<579:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.03|0.03|0.03|0.03>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<10>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1726ms>]. module=main
I[2022-12-31|11:43:46.086][33627:207] Height<580>, Tx<0>, SimTx<580:0>, BlockSize<489>, BTInterval<2021ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<580:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<235>, rdb<20>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<44ms>, Commit-0-0<81ms>, RunTx-0<44ms>, Waiting<1642ms>]. module=main
I[2022-12-31|11:43:48.086][33627:207] Height<581>, Tx<0>, SimTx<581:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<581:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<235>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<37ms>, Waiting<1769ms>]. module=main
I[2022-12-31|11:43:50.086][33627:207] Height<582>, Tx<0>, SimTx<582:0>, BlockSize<487>, BTInterval<2072ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<582:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<324>, rdb<8>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1711ms>]. module=main
I[2022-12-31|11:43:52.087][33627:207] Height<583>, Tx<0>, SimTx<583:0>, BlockSize<489>, BTInterval<1929ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<583:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<233>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<65ms>, Commit-0-0<86ms>, RunTx-0<23ms>, Waiting<1715ms>]. module=main
I[2022-12-31|11:43:54.087][33627:207] Height<584>, Tx<0>, SimTx<584:0>, BlockSize<487>, BTInterval<2025ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<584:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<245>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1690ms>]. module=main
I[2022-12-31|11:43:56.087][33627:207] Height<585>, Tx<0>, SimTx<585:0>, BlockSize<487>, BTInterval<1973ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<585:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<308>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1785ms>]. module=main
I[2022-12-31|11:43:58.087][33627:207] Height<586>, Tx<0>, SimTx<586:0>, BlockSize<487>, BTInterval<2026ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<586:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<12>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<64ms>, Commit-0-0<100ms>, RunTx-0<22ms>, Waiting<1679ms>]. module=main
I[2022-12-31|11:44:00.087][33627:207] Height<587>, Tx<0>, SimTx<587:0>, BlockSize<487>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<587:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<69ms>, RunTx-0<22ms>, Waiting<1714ms>]. module=main
I[2022-12-31|11:44:02.087][33627:207] Height<588>, Tx<0>, SimTx<588:0>, BlockSize<487>, BTInterval<1980ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<588:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<305>, rdb<12>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<50ms>, Commit-0-0<40ms>, RunTx-0<21ms>, Waiting<1777ms>]. module=main
I[2022-12-31|11:44:04.087][33627:207] Height<589>, Tx<0>, SimTx<589:0>, BlockSize<487>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<589:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<238>, rdb<12>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<63ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1741ms>]. module=main
I[2022-12-31|11:44:06.087][33627:207] Height<590>, Tx<0>, SimTx<590:0>, BlockSize<487>, BTInterval<2117ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<590:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<226>, rdb<4>, rdbTs<0ms>, savenode<86>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<107ms>, Precommit-0<42ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1646ms>]. module=main
I[2022-12-31|11:44:08.087][33627:207] Height<591>, Tx<0>, SimTx<591:0>, BlockSize<489>, BTInterval<1883ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<591:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<301>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:44:10.087][33627:207] Height<592>, Tx<0>, SimTx<592:0>, BlockSize<487>, BTInterval<2087ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<592:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<8>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<48ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1676ms>]. module=main
I[2022-12-31|11:44:12.087][33627:207] Height<593>, Tx<0>, SimTx<593:0>, BlockSize<489>, BTInterval<2010ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<593:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1647ms>]. module=main
I[2022-12-31|11:44:14.087][33627:207] Height<594>, Tx<0>, SimTx<594:0>, BlockSize<489>, BTInterval<1901ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<594:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<306>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1784ms>]. module=main
I[2022-12-31|11:44:16.088][33627:207] Height<595>, Tx<0>, SimTx<595:0>, BlockSize<487>, BTInterval<2099ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<595:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<234>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<44ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1664ms>]. module=main
I[2022-12-31|11:44:18.088][33627:207] Height<596>, Tx<0>, SimTx<596:0>, BlockSize<489>, BTInterval<1961ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<596:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<237>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<91ms>, Commit-0-0<41ms>, RunTx-0<21ms>, Waiting<1677ms>]. module=main
I[2022-12-31|11:44:20.088][33627:207] Height<597>, Tx<0>, SimTx<597:0>, BlockSize<489>, BTInterval<1939ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<597:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<296>, rdb<4>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:44:22.088][33627:207] Height<598>, Tx<0>, SimTx<598:0>, BlockSize<487>, BTInterval<2063ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<598:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<8>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1678ms>]. module=main
I[2022-12-31|11:44:24.088][33627:207] Height<599>, Tx<0>, SimTx<599:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<599:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<6ms>, flushMeta<17ms>>, Iavl[getnode<232>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<52ms>, RunTx-0<25ms>, Waiting<1771ms>]. module=main
I[2022-12-31|11:44:26.088][33627:207] Height<600>, Tx<0>, SimTx<600:0>, BlockSize<487>, BTInterval<2026ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<600:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<239>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<43ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:44:28.088][33627:207] Height<601>, Tx<0>, SimTx<601:0>, BlockSize<487>, BTInterval<2012ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<601:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<295>, rdb<4>, rdbTs<0ms>, savenode<87>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1743ms>]. module=main
I[2022-12-31|11:44:30.088][33627:207] Height<602>, Tx<0>, SimTx<602:0>, BlockSize<487>, BTInterval<1982ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<602:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<68ms>, RunTx-0<22ms>, Waiting<1714ms>]. module=main
I[2022-12-31|11:44:32.088][33627:207] Height<603>, Tx<0>, SimTx<603:0>, BlockSize<487>, BTInterval<2104ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<603:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<238>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<80ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1577ms>]. module=main
I[2022-12-31|11:44:34.088][33627:207] Height<604>, Tx<0>, SimTx<604:0>, BlockSize<489>, BTInterval<1876ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<604:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<306>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<64ms>, RunTx-0<21ms>, Waiting<1760ms>]. module=main
I[2022-12-31|11:44:36.088][33627:207] Height<605>, Tx<0>, SimTx<605:0>, BlockSize<487>, BTInterval<2019ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<605:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<237>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<68ms>, Commit-0-0<67ms>, RunTx-0<21ms>, Waiting<1712ms>]. module=main
I[2022-12-31|11:44:38.092][33627:207] Height<606>, Tx<0>, SimTx<606:0>, BlockSize<487>, BTInterval<2054ms>, LastBlockTime<2003ms>, GasUsed<0>, SimGasUsed<606:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<242>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<79ms>, Commit-0-0<84ms>, RunTx-0<1ms>, Waiting<1653ms>]. module=main
I[2022-12-31|11:44:40.092][33627:207] Height<607>, Tx<0>, SimTx<607:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<607:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<310>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<22ms>, Commit-0-0<58ms>, RunTx-0<22ms>, Waiting<1758ms>]. module=main
I[2022-12-31|11:44:42.092][33627:207] Height<608>, Tx<0>, SimTx<608:0>, BlockSize<487>, BTInterval<2075ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<608:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<244>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<84ms>, Commit-0-0<63ms>, RunTx-0<38ms>, Waiting<1619ms>]. module=main
I[2022-12-31|11:44:44.093][33627:207] Height<609>, Tx<0>, SimTx<609:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2001ms>, GasUsed<0>, SimGasUsed<609:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<29ms>, abci<0ms>, persist<29ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<27ms>>, Iavl[getnode<242>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2001ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<80ms>, Commit-0-0<116ms>, RunTx-0<29ms>, Waiting<1645ms>]. module=main
I[2022-12-31|11:44:46.093][33627:207] Height<610>, Tx<0>, SimTx<610:0>, BlockSize<487>, BTInterval<2032ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<610:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<297>, rdb<14>, rdbTs<0ms>, savenode<87>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<60ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1714ms>]. module=main
I[2022-12-31|11:44:48.093][33627:207] Height<611>, Tx<0>, SimTx<611:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<611:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<234>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<90ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<86ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1629ms>]. module=main
I[2022-12-31|11:44:50.093][33627:207] Height<612>, Tx<0>, SimTx<612:0>, BlockSize<489>, BTInterval<1930ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<612:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<3ms>, abci<0ms>, persist<3ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<2ms>>, Iavl[getnode<236>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<53ms>, Precommit-0<67ms>, Commit-0-0<87ms>, RunTx-0<3ms>, Waiting<1710ms>]. module=main
I[2022-12-31|11:44:52.117][33627:207] Height<613>, Tx<0>, SimTx<613:0>, BlockSize<487>, BTInterval<2098ms>, LastBlockTime<2023ms>, GasUsed<0>, SimGasUsed<613:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<3ms>, abci<0ms>, persist<3ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<2ms>>, Iavl[getnode<302>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2010ms>, enterPropose-0-y-f515c7<97ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<46ms>, Commit-0-0<49ms>, RunTx-0<3ms>, Waiting<1695ms>]. module=main
I[2022-12-31|11:44:54.117][33627:207] Height<614>, Tx<0>, SimTx<614:0>, BlockSize<489>, BTInterval<1933ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<614:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<47ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<45ms>, RunTx-0<21ms>, Waiting<1751ms>]. module=main
I[2022-12-31|11:44:56.117][33627:207] Height<615>, Tx<0>, SimTx<615:0>, BlockSize<489>, BTInterval<1968ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<615:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<235>, rdb<8>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<63ms>, Commit-0-0<117ms>, RunTx-0<23ms>, Waiting<1688ms>]. module=main
I[2022-12-31|11:44:58.117][33627:207] Height<616>, Tx<0>, SimTx<616:0>, BlockSize<487>, BTInterval<2034ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<616:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<41ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<22ms>, Commit-0-0<63ms>, RunTx-0<42ms>, Waiting<1709ms>]. module=main
I[2022-12-31|11:45:00.117][33627:207] Height<617>, Tx<0>, SimTx<617:0>, BlockSize<489>, BTInterval<1994ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<617:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1755ms>]. module=main
I[2022-12-31|11:45:02.117][33627:207] Height<618>, Tx<0>, SimTx<618:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<618:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<63ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1743ms>]. module=main
I[2022-12-31|11:45:04.117][33627:207] Height<619>, Tx<0>, SimTx<619:0>, BlockSize<487>, BTInterval<2051ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<619:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<305>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<49ms>, Commit-0-0<42ms>, RunTx-0<37ms>, Waiting<1739ms>]. module=main
I[2022-12-31|11:45:06.117][33627:207] Height<620>, Tx<0>, SimTx<620:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<620:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<10>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<84ms>, RunTx-0<23ms>, Waiting<1695ms>]. module=main
I[2022-12-31|11:45:08.117][33627:207] Height<621>, Tx<0>, SimTx<621:0>, BlockSize<489>, BTInterval<2021ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<621:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<234>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<84ms>, Commit-0-0<84ms>, RunTx-0<43ms>, Waiting<1656ms>]. module=main
I[2022-12-31|11:45:10.117][33627:207] Height<622>, Tx<0>, SimTx<622:0>, BlockSize<489>, BTInterval<1933ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<622:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<3ms>, flushMeta<18ms>>, Iavl[getnode<306>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1804ms>]. module=main
I[2022-12-31|11:45:12.118][33627:207] Height<623>, Tx<0>, SimTx<623:0>, BlockSize<487>, BTInterval<2150ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<623:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<40ms>>, Iavl[getnode<233>, rdb<2>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<94ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<42ms>, Waiting<1593ms>]. module=main
I[2022-12-31|11:45:14.118][33627:207] Height<624>, Tx<0>, SimTx<624:0>, BlockSize<489>, BTInterval<1933ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<624:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<84ms>, Commit-0-0<68ms>, RunTx-0<21ms>, Waiting<1654ms>]. module=main
I[2022-12-31|11:45:16.118][33627:207] Height<625>, Tx<0>, SimTx<625:0>, BlockSize<489>, BTInterval<1915ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<625:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<299>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1805ms>]. module=main
I[2022-12-31|11:45:18.118][33627:207] Height<626>, Tx<0>, SimTx<626:0>, BlockSize<487>, BTInterval<2112ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<626:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<108ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1671ms>]. module=main
I[2022-12-31|11:45:20.118][33627:207] Height<627>, Tx<0>, SimTx<627:0>, BlockSize<489>, BTInterval<1893ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<627:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<59ms>>, Iavl[getnode<246>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<69ms>, RunTx-0<61ms>, Waiting<1733ms>]. module=main
I[2022-12-31|11:45:22.118][33627:207] Height<628>, Tx<0>, SimTx<628:0>, BlockSize<487>, BTInterval<2047ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<628:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1752ms>]. module=main
I[2022-12-31|11:45:24.118][33627:207] Height<629>, Tx<0>, SimTx<629:0>, BlockSize<489>, BTInterval<2007ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<629:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<298>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:45:26.118][33627:207] Height<630>, Tx<0>, SimTx<630:0>, BlockSize<489>, BTInterval<2024ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<630:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<239>, rdb<8>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<100ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1619ms>]. module=main
I[2022-12-31|11:45:28.118][33627:207] Height<631>, Tx<0>, SimTx<631:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<631:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<236>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<51ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1776ms>]. module=main
I[2022-12-31|11:45:30.118][33627:207] Height<632>, Tx<0>, SimTx<632:0>, BlockSize<487>, BTInterval<2013ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<632:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<63ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1699ms>]. module=main
I[2022-12-31|11:45:32.118][33627:207] Height<633>, Tx<0>, SimTx<633:0>, BlockSize<489>, BTInterval<2044ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<633:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1698ms>]. module=main
I[2022-12-31|11:45:34.119][33627:207] Height<634>, Tx<0>, SimTx<634:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<634:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<238>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1782ms>]. module=main
I[2022-12-31|11:45:36.119][33627:207] Height<635>, Tx<0>, SimTx<635:0>, BlockSize<487>, BTInterval<2074ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<635:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<307>, rdb<8>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<79ms>, Precommit-0<63ms>, Commit-0-0<100ms>, RunTx-0<22ms>, Waiting<1628ms>]. module=main
I[2022-12-31|11:45:38.119][33627:207] Height<636>, Tx<0>, SimTx<636:0>, BlockSize<489>, BTInterval<2016ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<636:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<235>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<84ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1669ms>]. module=main
I[2022-12-31|11:45:40.119][33627:207] Height<637>, Tx<0>, SimTx<637:0>, BlockSize<489>, BTInterval<1885ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<637:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1805ms>]. module=main
I[2022-12-31|11:45:42.119][33627:207] Height<638>, Tx<0>, SimTx<638:0>, BlockSize<487>, BTInterval<2065ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<638:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<316>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1740ms>]. module=main
I[2022-12-31|11:45:44.119][33627:207] Height<639>, Tx<0>, SimTx<639:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<639:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<41ms>, RunTx-0<21ms>, Waiting<1763ms>]. module=main
I[2022-12-31|11:45:46.119][33627:207] Height<640>, Tx<0>, SimTx<640:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<640:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<232>, rdb<0>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<79ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1705ms>]. module=main
I[2022-12-31|11:45:48.119][33627:207] Height<641>, Tx<0>, SimTx<641:0>, BlockSize<487>, BTInterval<2018ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<641:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<297>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<85ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:45:50.119][33627:207] Height<642>, Tx<0>, SimTx<642:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<642:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<243>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1801ms>]. module=main
I[2022-12-31|11:45:52.119][33627:207] Height<643>, Tx<0>, SimTx<643:0>, BlockSize<487>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<643:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<62ms>, Commit-0-0<67ms>, RunTx-0<22ms>, Waiting<1715ms>]. module=main
I[2022-12-31|11:45:54.119][33627:207] Height<644>, Tx<0>, SimTx<644:0>, BlockSize<489>, BTInterval<2059ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<644:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<303>, rdb<8>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<83ms>, Precommit-0<80ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1643ms>]. module=main
I[2022-12-31|11:45:56.119][33627:207] Height<645>, Tx<0>, SimTx<645:0>, BlockSize<489>, BTInterval<1943ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<645:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1735ms>]. module=main
I[2022-12-31|11:45:58.119][33627:207] Height<646>, Tx<0>, SimTx<646:0>, BlockSize<489>, BTInterval<2010ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<646:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<234>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<69ms>, Commit-0-0<67ms>, RunTx-0<38ms>, Waiting<1678ms>]. module=main
I[2022-12-31|11:46:00.119][33627:207] Height<647>, Tx<0>, SimTx<647:0>, BlockSize<489>, BTInterval<1982ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<647:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<88ms>, Commit-0-0<83ms>, RunTx-0<42ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:46:02.120][33627:207] Height<648>, Tx<0>, SimTx<648:0>, BlockSize<489>, BTInterval<2038ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<648:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<57ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<56ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1726ms>]. module=main
I[2022-12-31|11:46:04.120][33627:207] Height<649>, Tx<0>, SimTx<649:0>, BlockSize<489>, BTInterval<2017ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<649:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<3ms>, flushMeta<39ms>>, Iavl[getnode<245>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<80ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<58ms>, Precommit-0<48ms>, Commit-0-0<84ms>, RunTx-0<44ms>, Waiting<1644ms>]. module=main
I[2022-12-31|11:46:06.120][33627:207] Height<650>, Tx<0>, SimTx<650:0>, BlockSize<489>, BTInterval<1973ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<650:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<300>, rdb<10>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<86ms>, Commit-0-0<80ms>, RunTx-0<38ms>, Waiting<1638ms>]. module=main
I[2022-12-31|11:46:08.120][33627:207] Height<651>, Tx<0>, SimTx<651:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<651:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<242>, rdb<10>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<26ms>, Waiting<1752ms>]. module=main
I[2022-12-31|11:46:10.120][33627:207] Height<652>, Tx<0>, SimTx<652:0>, BlockSize<489>, BTInterval<2098ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<652:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<36ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<87ms>, Precommit-0<102ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1580ms>]. module=main
I[2022-12-31|11:46:12.120][33627:207] Height<653>, Tx<0>, SimTx<653:0>, BlockSize<489>, BTInterval<1858ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<653:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<36ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<38ms>, Waiting<1784ms>]. module=main
I[2022-12-31|11:46:14.120][33627:207] Height<654>, Tx<0>, SimTx<654:0>, BlockSize<487>, BTInterval<2068ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<654:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<237>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<43ms>, Commit-0-0<85ms>, RunTx-0<21ms>, Waiting<1689ms>]. module=main
I[2022-12-31|11:46:16.120][33627:207] Height<655>, Tx<0>, SimTx<655:0>, BlockSize<489>, BTInterval<1973ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<655:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<246>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<38ms>, Waiting<1741ms>]. module=main
I[2022-12-31|11:46:18.120][33627:207] Height<656>, Tx<0>, SimTx<656:0>, BlockSize<489>, BTInterval<2026ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<656:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<310>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<58ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<94ms>, Commit-0-0<68ms>, RunTx-0<22ms>, Waiting<1659ms>]. module=main
I[2022-12-31|11:46:20.120][33627:207] Height<657>, Tx<0>, SimTx<657:0>, BlockSize<489>, BTInterval<2041ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<657:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.02|0.02|0.02|0.02>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<90ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<68ms>, Commit-0-0<83ms>, RunTx-0<22ms>, Waiting<1624ms>]. module=main
I[2022-12-31|11:46:22.120][33627:207] Height<658>, Tx<0>, SimTx<658:0>, BlockSize<489>, BTInterval<1995ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<658:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<237>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<93ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<51ms>, Commit-0-0<48ms>, RunTx-0<1ms>, Waiting<1706ms>]. module=main
I[2022-12-31|11:46:24.121][33627:207] Height<659>, Tx<0>, SimTx<659:0>, BlockSize<489>, BTInterval<1890ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<659:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<21ms>, Commit-0-0<43ms>, RunTx-0<21ms>, Waiting<1806ms>]. module=main
I[2022-12-31|11:46:26.121][33627:207] Height<660>, Tx<0>, SimTx<660:0>, BlockSize<487>, BTInterval<2119ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<660:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<309>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<91ms>, Precommit-0<80ms>, Commit-0-0<101ms>, RunTx-0<23ms>, Waiting<1588ms>]. module=main
I[2022-12-31|11:46:28.121][33627:207] Height<661>, Tx<0>, SimTx<661:0>, BlockSize<489>, BTInterval<1900ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<661:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<58ms>, RunTx-0<22ms>, Waiting<1768ms>]. module=main
I[2022-12-31|11:46:30.121][33627:207] Height<662>, Tx<0>, SimTx<662:0>, BlockSize<487>, BTInterval<2116ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<662:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<65ms>, Commit-0-0<89ms>, RunTx-0<21ms>, Waiting<1600ms>]. module=main
I[2022-12-31|11:46:32.121][33627:207] Height<663>, Tx<0>, SimTx<663:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<663:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<64ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1654ms>]. module=main
I[2022-12-31|11:46:34.121][33627:207] Height<664>, Tx<0>, SimTx<664:0>, BlockSize<489>, BTInterval<1949ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<664:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<21ms>, Waiting<1768ms>]. module=main
I[2022-12-31|11:46:36.121][33627:207] Height<665>, Tx<0>, SimTx<665:0>, BlockSize<487>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<665:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<62ms>, Commit-0-0<83ms>, RunTx-0<22ms>, Waiting<1677ms>]. module=main
I[2022-12-31|11:46:38.121][33627:207] Height<666>, Tx<0>, SimTx<666:0>, BlockSize<489>, BTInterval<2024ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<666:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<1ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<8ms>, flushMeta<32ms>>, Iavl[getnode<301>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<28ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<63ms>, Commit-0-0<109ms>, RunTx-0<44ms>, Waiting<1604ms>]. module=main
I[2022-12-31|11:46:40.121][33627:207] Height<667>, Tx<0>, SimTx<667:0>, BlockSize<489>, BTInterval<1910ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<667:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1804ms>]. module=main
I[2022-12-31|11:46:42.121][33627:207] Height<668>, Tx<0>, SimTx<668:0>, BlockSize<487>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<668:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<65ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1697ms>]. module=main
I[2022-12-31|11:46:44.121][33627:207] Height<669>, Tx<0>, SimTx<669:0>, BlockSize<489>, BTInterval<2030ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<669:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<308>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1668ms>]. module=main
I[2022-12-31|11:46:46.122][33627:207] Height<670>, Tx<0>, SimTx<670:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<670:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<231>, rdb<7>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<43ms>, Commit-0-0<41ms>, RunTx-0<22ms>, Waiting<1796ms>]. module=main
I[2022-12-31|11:46:48.122][33627:207] Height<671>, Tx<0>, SimTx<671:0>, BlockSize<487>, BTInterval<2079ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<671:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<239>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<88ms>, Commit-0-0<64ms>, RunTx-0<20ms>, Waiting<1649ms>]. module=main
I[2022-12-31|11:46:50.122][33627:207] Height<672>, Tx<0>, SimTx<672:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<672:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<305>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1728ms>]. module=main
I[2022-12-31|11:46:52.122][33627:207] Height<673>, Tx<0>, SimTx<673:0>, BlockSize<489>, BTInterval<2000ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<673:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<239>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<100ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1642ms>]. module=main
I[2022-12-31|11:46:54.122][33627:207] Height<674>, Tx<0>, SimTx<674:0>, BlockSize<489>, BTInterval<2042ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<674:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<64ms>, Commit-0-0<78ms>, RunTx-0<21ms>, Waiting<1627ms>]. module=main
I[2022-12-31|11:46:56.122][33627:207] Height<675>, Tx<0>, SimTx<675:0>, BlockSize<489>, BTInterval<1923ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<675:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<307>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1760ms>]. module=main
I[2022-12-31|11:46:58.122][33627:207] Height<676>, Tx<0>, SimTx<676:0>, BlockSize<489>, BTInterval<2077ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<676:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<236>, rdb<2>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<62ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<102ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1624ms>]. module=main
I[2022-12-31|11:47:00.122][33627:207] Height<677>, Tx<0>, SimTx<677:0>, BlockSize<489>, BTInterval<1972ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<677:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<92ms>, Precommit-0<140ms>, Commit-0-0<91ms>, RunTx-0<22ms>, Waiting<1580ms>]. module=main
I[2022-12-31|11:47:02.122][33627:207] Height<678>, Tx<0>, SimTx<678:0>, BlockSize<489>, BTInterval<1981ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<678:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<305>, rdb<10>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<96ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1729ms>]. module=main
I[2022-12-31|11:47:04.122][33627:207] Height<679>, Tx<0>, SimTx<679:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<679:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<236>, rdb<4>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<87ms>, Precommit-0<101ms>, Commit-0-0<44ms>, RunTx-0<23ms>, Waiting<1633ms>]. module=main
I[2022-12-31|11:47:06.123][33627:207] Height<680>, Tx<0>, SimTx<680:0>, BlockSize<489>, BTInterval<1892ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<680:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<22ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1801ms>]. module=main
I[2022-12-31|11:47:08.123][33627:207] Height<681>, Tx<0>, SimTx<681:0>, BlockSize<487>, BTInterval<2200ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<681:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<300>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<106ms>, recvProposal<76ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<86ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1551ms>]. module=main
I[2022-12-31|11:47:10.123][33627:207] Height<682>, Tx<0>, SimTx<682:0>, BlockSize<489>, BTInterval<1876ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<682:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1725ms>]. module=main
I[2022-12-31|11:47:12.123][33627:207] Height<683>, Tx<0>, SimTx<683:0>, BlockSize<489>, BTInterval<1986ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<683:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<36ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<102ms>, Commit-0-0<83ms>, RunTx-0<22ms>, Waiting<1640ms>]. module=main
I[2022-12-31|11:47:14.124][33627:207] Height<684>, Tx<0>, SimTx<684:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<684:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<301>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1700ms>]. module=main
I[2022-12-31|11:47:16.124][33627:207] Height<685>, Tx<0>, SimTx<685:0>, BlockSize<489>, BTInterval<2038ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<685:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<238>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<44ms>, RunTx-0<22ms>, Waiting<1721ms>]. module=main
I[2022-12-31|11:47:18.124][33627:207] Height<686>, Tx<0>, SimTx<686:0>, BlockSize<489>, BTInterval<1959ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<686:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<242>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<86ms>, Commit-0-0<62ms>, RunTx-0<43ms>, Waiting<1679ms>]. module=main
I[2022-12-31|11:47:20.124][33627:207] Height<687>, Tx<0>, SimTx<687:0>, BlockSize<489>, BTInterval<2042ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<687:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<84ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1658ms>]. module=main
I[2022-12-31|11:47:22.124][33627:207] Height<688>, Tx<0>, SimTx<688:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<688:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1776ms>]. module=main
I[2022-12-31|11:47:24.124][33627:207] Height<689>, Tx<0>, SimTx<689:0>, BlockSize<487>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<689:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<245>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1694ms>]. module=main
I[2022-12-31|11:47:26.124][33627:207] Height<690>, Tx<0>, SimTx<690:0>, BlockSize<487>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<690:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<248>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<42ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1689ms>]. module=main
I[2022-12-31|11:47:28.124][33627:207] Height<691>, Tx<0>, SimTx<691:0>, BlockSize<489>, BTInterval<1905ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<691:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<305>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1805ms>]. module=main
I[2022-12-31|11:47:30.124][33627:207] Height<692>, Tx<0>, SimTx<692:0>, BlockSize<487>, BTInterval<2102ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<692:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<63ms>, Commit-0-0<100ms>, RunTx-0<22ms>, Waiting<1643ms>]. module=main
I[2022-12-31|11:47:32.124][33627:207] Height<693>, Tx<0>, SimTx<693:0>, BlockSize<489>, BTInterval<1967ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<693:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<243>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1733ms>]. module=main
I[2022-12-31|11:47:34.124][33627:207] Height<694>, Tx<0>, SimTx<694:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<694:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<305>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<58ms>, RunTx-0<26ms>, Waiting<1763ms>]. module=main
I[2022-12-31|11:47:36.124][33627:207] Height<695>, Tx<0>, SimTx<695:0>, BlockSize<487>, BTInterval<2077ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<695:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<238>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<64ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1685ms>]. module=main
I[2022-12-31|11:47:38.124][33627:207] Height<696>, Tx<0>, SimTx<696:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<696:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<40ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<42ms>, Waiting<1692ms>]. module=main
I[2022-12-31|11:47:40.125][33627:207] Height<697>, Tx<0>, SimTx<697:0>, BlockSize<489>, BTInterval<1932ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<697:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<26ms>>, Iavl[getnode<306>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<44ms>, RunTx-0<27ms>, Waiting<1774ms>]. module=main
I[2022-12-31|11:47:42.125][33627:207] Height<698>, Tx<0>, SimTx<698:0>, BlockSize<487>, BTInterval<2017ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<698:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1763ms>]. module=main
I[2022-12-31|11:47:44.125][33627:207] Height<699>, Tx<0>, SimTx<699:0>, BlockSize<489>, BTInterval<2066ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<699:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<234>, rdb<8>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<105ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1652ms>]. module=main
I[2022-12-31|11:47:46.125][33627:207] Height<700>, Tx<0>, SimTx<700:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<700:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<301>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<83ms>, RunTx-0<22ms>, Waiting<1697ms>]. module=main
I[2022-12-31|11:47:48.125][33627:207] Height<701>, Tx<0>, SimTx<701:0>, BlockSize<489>, BTInterval<1990ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<701:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<227>, rdb<4>, rdbTs<0ms>, savenode<87>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1769ms>]. module=main
I[2022-12-31|11:47:50.125][33627:207] Height<702>, Tx<0>, SimTx<702:0>, BlockSize<487>, BTInterval<2093ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<702:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<236>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1968ms>, enterPropose-0-y-f515c7<72ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<90ms>, Precommit-0<61ms>, Commit-0-0<83ms>, RunTx-0<27ms>, Waiting<1611ms>]. module=main
I[2022-12-31|11:47:52.125][33627:207] Height<703>, Tx<0>, SimTx<703:0>, BlockSize<489>, BTInterval<1916ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<703:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<41ms>, abci<0ms>, persist<41ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<40ms>>, Iavl[getnode<309>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<95ms>, RunTx-0<41ms>, Waiting<1667ms>]. module=main
I[2022-12-31|11:47:54.125][33627:207] Height<704>, Tx<0>, SimTx<704:0>, BlockSize<489>, BTInterval<2000ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<704:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<233>, rdb<2>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<41ms>, RunTx-0<22ms>, Waiting<1761ms>]. module=main
I[2022-12-31|11:47:56.125][33627:207] Height<705>, Tx<0>, SimTx<705:0>, BlockSize<489>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<705:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<106ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1613ms>]. module=main
I[2022-12-31|11:47:58.125][33627:207] Height<706>, Tx<0>, SimTx<706:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<706:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<306>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<100ms>, Commit-0-0<115ms>, RunTx-0<43ms>, Waiting<1612ms>]. module=main
I[2022-12-31|11:48:00.125][33627:207] Height<707>, Tx<0>, SimTx<707:0>, BlockSize<489>, BTInterval<2099ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<707:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<118ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<110ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1563ms>]. module=main
I[2022-12-31|11:48:02.125][33627:207] Height<708>, Tx<0>, SimTx<708:0>, BlockSize<489>, BTInterval<1933ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<708:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<241>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<59ms>, Commit-0-0<89ms>, RunTx-0<22ms>, Waiting<1668ms>]. module=main
I[2022-12-31|11:48:04.126][33627:207] Height<709>, Tx<0>, SimTx<709:0>, BlockSize<489>, BTInterval<1910ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<709:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<300>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<43ms>, Waiting<1785ms>]. module=main
I[2022-12-31|11:48:06.126][33627:207] Height<710>, Tx<0>, SimTx<710:0>, BlockSize<487>, BTInterval<2038ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<710:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<237>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<36ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<67ms>, Commit-0-0<78ms>, RunTx-0<26ms>, Waiting<1701ms>]. module=main
I[2022-12-31|11:48:08.126][33627:207] Height<711>, Tx<0>, SimTx<711:0>, BlockSize<489>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<711:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<105ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<78ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1623ms>]. module=main
I[2022-12-31|11:48:10.126][33627:207] Height<712>, Tx<0>, SimTx<712:0>, BlockSize<489>, BTInterval<1938ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<712:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<306>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<59ms>, Commit-0-0<46ms>, RunTx-0<21ms>, Waiting<1758ms>]. module=main
I[2022-12-31|11:48:12.126][33627:207] Height<713>, Tx<0>, SimTx<713:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<713:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<64ms>, abci<0ms>, persist<63ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<62ms>>, Iavl[getnode<239>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<88ms>, Precommit-0<100ms>, Commit-0-0<59ms>, RunTx-0<64ms>, Waiting<1612ms>]. module=main
I[2022-12-31|11:48:14.127][33627:207] Height<714>, Tx<0>, SimTx<714:0>, BlockSize<489>, BTInterval<2135ms>, LastBlockTime<2001ms>, GasUsed<0>, SimGasUsed<714:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<242>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<98ms>, recvProposal<47ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<103ms>, Precommit-0<112ms>, Commit-0-0<74ms>, RunTx-0<1ms>, Waiting<1547ms>]. module=main
I[2022-12-31|11:48:16.128][33627:207] Height<715>, Tx<0>, SimTx<715:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<715:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<298>, rdb<4>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<92ms>, Commit-0-0<91ms>, RunTx-0<23ms>, Waiting<1573ms>]. module=main
I[2022-12-31|11:48:18.128][33627:207] Height<716>, Tx<0>, SimTx<716:0>, BlockSize<489>, BTInterval<1967ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<716:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<53ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1667ms>]. module=main
I[2022-12-31|11:48:20.128][33627:207] Height<717>, Tx<0>, SimTx<717:0>, BlockSize<489>, BTInterval<1898ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<717:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1778ms>]. module=main
I[2022-12-31|11:48:22.128][33627:207] Height<718>, Tx<0>, SimTx<718:0>, BlockSize<487>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<718:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<248>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1674ms>]. module=main
I[2022-12-31|11:48:24.128][33627:207] Height<719>, Tx<0>, SimTx<719:0>, BlockSize<489>, BTInterval<2066ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<719:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<302>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<131ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<76ms>, Precommit-0<53ms>, Commit-0-0<55ms>, RunTx-0<1ms>, Waiting<1648ms>]. module=main
I[2022-12-31|11:48:26.128][33627:207] Height<720>, Tx<0>, SimTx<720:0>, BlockSize<489>, BTInterval<1873ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<720:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<246>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<22ms>, Commit-0-0<59ms>, RunTx-0<22ms>, Waiting<1757ms>]. module=main
I[2022-12-31|11:48:28.128][33627:207] Height<721>, Tx<0>, SimTx<721:0>, BlockSize<487>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<721:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<228>, rdb<2>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<61ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<118ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1615ms>]. module=main
I[2022-12-31|11:48:30.128][33627:207] Height<722>, Tx<0>, SimTx<722:0>, BlockSize<489>, BTInterval<2007ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<722:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<300>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<36ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:48:32.128][33627:207] Height<723>, Tx<0>, SimTx<723:0>, BlockSize<489>, BTInterval<2003ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<723:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<236>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<60ms>, Precommit-0<43ms>, Commit-0-0<87ms>, RunTx-0<22ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:48:34.128][33627:207] Height<724>, Tx<0>, SimTx<724:0>, BlockSize<489>, BTInterval<1935ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<724:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<241>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<43ms>, Commit-0-0<48ms>, RunTx-0<23ms>, Waiting<1758ms>]. module=main
I[2022-12-31|11:48:36.128][33627:207] Height<725>, Tx<0>, SimTx<725:0>, BlockSize<489>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<725:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<302>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<60ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<79ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1640ms>]. module=main
I[2022-12-31|11:48:38.128][33627:207] Height<726>, Tx<0>, SimTx<726:0>, BlockSize<489>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<726:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<63ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<64ms>, Commit-0-0<85ms>, RunTx-0<22ms>, Waiting<1575ms>]. module=main
I[2022-12-31|11:48:40.129][33627:207] Height<727>, Tx<0>, SimTx<727:0>, BlockSize<489>, BTInterval<1917ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<727:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<54ms>, abci<0ms>, persist<54ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<52ms>>, Iavl[getnode<241>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<45ms>, Commit-0-0<42ms>, RunTx-0<54ms>, Waiting<1689ms>]. module=main
I[2022-12-31|11:48:42.129][33627:207] Height<728>, Tx<0>, SimTx<728:0>, BlockSize<489>, BTInterval<1958ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<728:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<65ms>, abci<0ms>, persist<64ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<63ms>>, Iavl[getnode<309>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<82ms>, Commit-0-0<87ms>, RunTx-0<65ms>, Waiting<1653ms>]. module=main
I[2022-12-31|11:48:44.129][33627:207] Height<729>, Tx<0>, SimTx<729:0>, BlockSize<489>, BTInterval<2060ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<729:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<236>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<24ms>, Waiting<1657ms>]. module=main
I[2022-12-31|11:48:46.129][33627:207] Height<730>, Tx<0>, SimTx<730:0>, BlockSize<489>, BTInterval<1954ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<730:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<230>, rdb<6>, rdbTs<0ms>, savenode<87>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<66ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1724ms>]. module=main
I[2022-12-31|11:48:48.129][33627:207] Height<731>, Tx<0>, SimTx<731:0>, BlockSize<489>, BTInterval<2047ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<731:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<298>, rdb<0>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<101ms>, Commit-0-0<65ms>, RunTx-0<43ms>, Waiting<1600ms>]. module=main
I[2022-12-31|11:48:50.129][33627:207] Height<732>, Tx<0>, SimTx<732:0>, BlockSize<489>, BTInterval<1947ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<732:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<25ms>>, Iavl[getnode<236>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<65ms>, Commit-0-0<66ms>, RunTx-0<27ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:48:52.129][33627:207] Height<733>, Tx<0>, SimTx<733:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<733:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1756ms>]. module=main
I[2022-12-31|11:48:54.129][33627:207] Height<734>, Tx<0>, SimTx<734:0>, BlockSize<489>, BTInterval<1999ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<734:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<305>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<66ms>, Commit-0-0<79ms>, RunTx-0<24ms>, Waiting<1695ms>]. module=main
I[2022-12-31|11:48:56.130][33627:207] Height<735>, Tx<0>, SimTx<735:0>, BlockSize<489>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<735:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<235>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<85ms>, Commit-0-0<89ms>, RunTx-0<42ms>, Waiting<1606ms>]. module=main
I[2022-12-31|11:48:58.130][33627:207] Height<736>, Tx<0>, SimTx<736:0>, BlockSize<489>, BTInterval<1954ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<736:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<38ms>, Precommit-0<42ms>, Commit-0-0<59ms>, RunTx-0<22ms>, Waiting<1745ms>]. module=main
I[2022-12-31|11:49:00.130][33627:207] Height<737>, Tx<0>, SimTx<737:0>, BlockSize<489>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<737:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<300>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<100ms>, Precommit-0<107ms>, Commit-0-0<79ms>, RunTx-0<24ms>, Waiting<1592ms>]. module=main
I[2022-12-31|11:49:02.130][33627:207] Height<738>, Tx<0>, SimTx<738:0>, BlockSize<489>, BTInterval<1941ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<738:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<240>, rdb<0>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<53ms>, Precommit-0<65ms>, Commit-0-0<71ms>, RunTx-0<22ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:49:04.130][33627:207] Height<739>, Tx<0>, SimTx<739:0>, BlockSize<489>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<739:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<241>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<71ms>, Commit-0-0<116ms>, RunTx-0<27ms>, Waiting<1619ms>]. module=main
I[2022-12-31|11:49:06.130][33627:207] Height<740>, Tx<0>, SimTx<740:0>, BlockSize<489>, BTInterval<2042ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<740:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<305>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<100ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<65ms>, Commit-0-0<80ms>, RunTx-0<38ms>, Waiting<1607ms>]. module=main
I[2022-12-31|11:49:08.130][33627:207] Height<741>, Tx<0>, SimTx<741:0>, BlockSize<489>, BTInterval<1976ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<741:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1967ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<43ms>, Commit-0-0<44ms>, RunTx-0<21ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:49:10.130][33627:207] Height<742>, Tx<0>, SimTx<742:0>, BlockSize<489>, BTInterval<2004ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<742:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<75ms>, Precommit-0<64ms>, Commit-0-0<86ms>, RunTx-0<21ms>, Waiting<1636ms>]. module=main
I[2022-12-31|11:49:12.130][33627:207] Height<743>, Tx<0>, SimTx<743:0>, BlockSize<489>, BTInterval<1995ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<743:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<299>, rdb<4>, rdbTs<0ms>, savenode<87>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<95ms>, Commit-0-0<65ms>, RunTx-0<44ms>, Waiting<1606ms>]. module=main
I[2022-12-31|11:49:14.130][33627:207] Height<744>, Tx<0>, SimTx<744:0>, BlockSize<489>, BTInterval<2023ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<744:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<115ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<101ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1624ms>]. module=main
I[2022-12-31|11:49:16.130][33627:207] Height<745>, Tx<0>, SimTx<745:0>, BlockSize<489>, BTInterval<1871ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<745:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<61ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<44ms>, RunTx-0<21ms>, Waiting<1809ms>]. module=main
I[2022-12-31|11:49:18.130][33627:207] Height<746>, Tx<0>, SimTx<746:0>, BlockSize<487>, BTInterval<2159ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<746:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<146ms>, Precommit-0<93ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1557ms>]. module=main
I[2022-12-31|11:49:20.131][33627:207] Height<747>, Tx<0>, SimTx<747:0>, BlockSize<489>, BTInterval<1932ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<747:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<240>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1677ms>]. module=main
I[2022-12-31|11:49:22.131][33627:207] Height<748>, Tx<0>, SimTx<748:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<748:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<6>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1781ms>]. module=main
I[2022-12-31|11:49:24.131][33627:207] Height<749>, Tx<0>, SimTx<749:0>, BlockSize<487>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<749:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<243>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<80ms>, Commit-0-0<100ms>, RunTx-0<23ms>, Waiting<1604ms>]. module=main
I[2022-12-31|11:49:26.131][33627:207] Height<750>, Tx<0>, SimTx<750:0>, BlockSize<489>, BTInterval<1940ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<750:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<42ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1738ms>]. module=main
I[2022-12-31|11:49:28.131][33627:207] Height<751>, Tx<0>, SimTx<751:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<751:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1782ms>]. module=main
I[2022-12-31|11:49:30.131][33627:207] Height<752>, Tx<0>, SimTx<752:0>, BlockSize<487>, BTInterval<2051ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<752:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1691ms>]. module=main
I[2022-12-31|11:49:32.131][33627:207] Height<753>, Tx<0>, SimTx<753:0>, BlockSize<489>, BTInterval<1966ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<753:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<314>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<73ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1767ms>]. module=main
I[2022-12-31|11:49:34.131][33627:207] Height<754>, Tx<0>, SimTx<754:0>, BlockSize<489>, BTInterval<1981ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<754:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<64ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1721ms>]. module=main
I[2022-12-31|11:49:36.131][33627:207] Height<755>, Tx<0>, SimTx<755:0>, BlockSize<487>, BTInterval<2092ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<755:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<97ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<43ms>, Commit-0-0<47ms>, RunTx-0<60ms>, Waiting<1647ms>]. module=main
I[2022-12-31|11:49:38.131][33627:207] Height<756>, Tx<0>, SimTx<756:0>, BlockSize<489>, BTInterval<1911ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<756:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<335>, rdb<4>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:49:40.131][33627:207] Height<757>, Tx<0>, SimTx<757:0>, BlockSize<487>, BTInterval<2051ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<757:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<97ms>, Precommit-0<63ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1687ms>]. module=main
I[2022-12-31|11:49:42.131][33627:207] Height<758>, Tx<0>, SimTx<758:0>, BlockSize<489>, BTInterval<2019ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<758:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<116ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1637ms>]. module=main
I[2022-12-31|11:49:44.131][33627:207] Height<759>, Tx<0>, SimTx<759:0>, BlockSize<489>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<759:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1691ms>]. module=main
I[2022-12-31|11:49:46.132][33627:207] Height<760>, Tx<0>, SimTx<760:0>, BlockSize<489>, BTInterval<2007ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<760:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<100ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1704ms>]. module=main
I[2022-12-31|11:49:48.132][33627:207] Height<761>, Tx<0>, SimTx<761:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<761:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<236>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<42ms>, Waiting<1683ms>]. module=main
I[2022-12-31|11:49:50.132][33627:207] Height<762>, Tx<0>, SimTx<762:0>, BlockSize<489>, BTInterval<1958ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<762:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<309>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<75ms>, Commit-0-0<47ms>, RunTx-0<22ms>, Waiting<1745ms>]. module=main
I[2022-12-31|11:49:52.132][33627:207] Height<763>, Tx<0>, SimTx<763:0>, BlockSize<489>, BTInterval<2050ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<763:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<21ms>, Waiting<1716ms>]. module=main
I[2022-12-31|11:49:54.132][33627:207] Height<764>, Tx<0>, SimTx<764:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<764:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1972ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<92ms>, RunTx-0<22ms>, Waiting<1670ms>]. module=main
I[2022-12-31|11:49:56.132][33627:207] Height<765>, Tx<0>, SimTx<765:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<765:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<62ms>, Commit-0-0<115ms>, RunTx-0<26ms>, Waiting<1685ms>]. module=main
I[2022-12-31|11:49:58.132][33627:207] Height<766>, Tx<0>, SimTx<766:0>, BlockSize<487>, BTInterval<2020ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<766:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<235>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1763ms>]. module=main
I[2022-12-31|11:50:00.132][33627:207] Height<767>, Tx<0>, SimTx<767:0>, BlockSize<489>, BTInterval<2101ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<767:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<75ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<90ms>, Precommit-0<119ms>, Commit-0-0<65ms>, RunTx-0<44ms>, Waiting<1540ms>]. module=main
I[2022-12-31|11:50:02.132][33627:207] Height<768>, Tx<0>, SimTx<768:0>, BlockSize<489>, BTInterval<1948ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<768:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<312>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<52ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<100ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<1ms>, Waiting<1733ms>]. module=main
I[2022-12-31|11:50:04.132][33627:207] Height<769>, Tx<0>, SimTx<769:0>, BlockSize<489>, BTInterval<2051ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<769:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<105ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<85ms>, Commit-0-0<94ms>, RunTx-0<37ms>, Waiting<1568ms>]. module=main
I[2022-12-31|11:50:06.132][33627:207] Height<770>, Tx<0>, SimTx<770:0>, BlockSize<489>, BTInterval<1948ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<770:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<3ms>, abci<0ms>, persist<3ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<2ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<72ms>, Commit-0-0<74ms>, RunTx-0<3ms>, Waiting<1671ms>]. module=main
I[2022-12-31|11:50:08.132][33627:207] Height<771>, Tx<0>, SimTx<771:0>, BlockSize<489>, BTInterval<1969ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<771:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1743ms>]. module=main
I[2022-12-31|11:50:10.132][33627:207] Height<772>, Tx<0>, SimTx<772:0>, BlockSize<489>, BTInterval<1979ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<772:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<83ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:50:12.133][33627:207] Height<773>, Tx<0>, SimTx<773:0>, BlockSize<489>, BTInterval<2060ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<773:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<63ms>, Commit-0-0<99ms>, RunTx-0<21ms>, Waiting<1626ms>]. module=main
I[2022-12-31|11:50:14.133][33627:207] Height<774>, Tx<0>, SimTx<774:0>, BlockSize<489>, BTInterval<1929ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<774:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1775ms>]. module=main
I[2022-12-31|11:50:16.133][33627:207] Height<775>, Tx<0>, SimTx<775:0>, BlockSize<489>, BTInterval<2060ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<775:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<48ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1674ms>]. module=main
I[2022-12-31|11:50:18.133][33627:207] Height<776>, Tx<0>, SimTx<776:0>, BlockSize<489>, BTInterval<1979ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<776:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1694ms>]. module=main
I[2022-12-31|11:50:20.133][33627:207] Height<777>, Tx<0>, SimTx<777:0>, BlockSize<489>, BTInterval<1950ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<777:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:50:22.133][33627:207] Height<778>, Tx<0>, SimTx<778:0>, BlockSize<487>, BTInterval<2133ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<778:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<307>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<83ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<100ms>, Precommit-0<65ms>, Commit-0-0<88ms>, RunTx-0<21ms>, Waiting<1582ms>]. module=main
I[2022-12-31|11:50:24.133][33627:207] Height<779>, Tx<0>, SimTx<779:0>, BlockSize<489>, BTInterval<1939ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<779:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<42ms>, Commit-0-0<78ms>, RunTx-0<21ms>, Waiting<1675ms>]. module=main
I[2022-12-31|11:50:26.134][33627:207] Height<780>, Tx<0>, SimTx<780:0>, BlockSize<489>, BTInterval<1931ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<780:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<252>, rdb<9>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1778ms>]. module=main
I[2022-12-31|11:50:28.134][33627:207] Height<781>, Tx<0>, SimTx<781:0>, BlockSize<487>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<781:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1671ms>]. module=main
I[2022-12-31|11:50:30.134][33627:207] Height<782>, Tx<0>, SimTx<782:0>, BlockSize<489>, BTInterval<2046ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<782:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<102ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1644ms>]. module=main
I[2022-12-31|11:50:32.135][33627:207] Height<783>, Tx<0>, SimTx<783:0>, BlockSize<489>, BTInterval<1882ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<783:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:50:34.135][33627:207] Height<784>, Tx<0>, SimTx<784:0>, BlockSize<487>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<784:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<312>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<82ms>, RunTx-0<22ms>, Waiting<1681ms>]. module=main
I[2022-12-31|11:50:36.135][33627:207] Height<785>, Tx<0>, SimTx<785:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<785:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1709ms>]. module=main
I[2022-12-31|11:50:38.135][33627:207] Height<786>, Tx<0>, SimTx<786:0>, BlockSize<489>, BTInterval<1945ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<786:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:50:40.136][33627:207] Height<787>, Tx<0>, SimTx<787:0>, BlockSize<487>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<787:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<314>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<68ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1656ms>]. module=main
I[2022-12-31|11:50:42.136][33627:207] Height<788>, Tx<0>, SimTx<788:0>, BlockSize<489>, BTInterval<1992ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<788:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<80ms>, Commit-0-0<99ms>, RunTx-0<21ms>, Waiting<1638ms>]. module=main
I[2022-12-31|11:50:44.136][33627:207] Height<789>, Tx<0>, SimTx<789:0>, BlockSize<489>, BTInterval<1928ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<789:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<24ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:50:46.136][33627:207] Height<790>, Tx<0>, SimTx<790:0>, BlockSize<487>, BTInterval<2088ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<790:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<307>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<42ms>, Commit-0-0<73ms>, RunTx-0<21ms>, Waiting<1663ms>]. module=main
I[2022-12-31|11:50:48.136][33627:207] Height<791>, Tx<0>, SimTx<791:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<791:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<37ms>, Commit-0-0<58ms>, RunTx-0<22ms>, Waiting<1742ms>]. module=main
I[2022-12-31|11:50:50.136][33627:207] Height<792>, Tx<0>, SimTx<792:0>, BlockSize<489>, BTInterval<2062ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<792:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<248>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<29ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<90ms>, Commit-0-0<77ms>, RunTx-0<43ms>, Waiting<1625ms>]. module=main
I[2022-12-31|11:50:52.136][33627:207] Height<793>, Tx<0>, SimTx<793:0>, BlockSize<489>, BTInterval<2014ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<793:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<92ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1677ms>]. module=main
I[2022-12-31|11:50:54.137][33627:207] Height<794>, Tx<0>, SimTx<794:0>, BlockSize<489>, BTInterval<1990ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<794:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1707ms>]. module=main
I[2022-12-31|11:50:56.137][33627:207] Height<795>, Tx<0>, SimTx<795:0>, BlockSize<489>, BTInterval<1922ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<795:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1784ms>]. module=main
I[2022-12-31|11:50:58.137][33627:207] Height<796>, Tx<0>, SimTx<796:0>, BlockSize<487>, BTInterval<2100ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<796:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<85ms>, Commit-0-0<44ms>, RunTx-0<21ms>, Waiting<1659ms>]. module=main
I[2022-12-31|11:51:00.137][33627:207] Height<797>, Tx<0>, SimTx<797:0>, BlockSize<489>, BTInterval<1899ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<797:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<19ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:51:02.137][33627:207] Height<798>, Tx<0>, SimTx<798:0>, BlockSize<487>, BTInterval<2069ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<798:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<86ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1648ms>]. module=main
I[2022-12-31|11:51:04.137][33627:207] Height<799>, Tx<0>, SimTx<799:0>, BlockSize<489>, BTInterval<2003ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<799:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<309>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<66ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1667ms>]. module=main
I[2022-12-31|11:51:06.137][33627:207] Height<800>, Tx<0>, SimTx<800:0>, BlockSize<489>, BTInterval<1941ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<800:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<6>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<56ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<46ms>, RunTx-0<22ms>, Waiting<1765ms>]. module=main
I[2022-12-31|11:51:08.137][33627:207] Height<801>, Tx<0>, SimTx<801:0>, BlockSize<489>, BTInterval<2045ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<801:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<239>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<79ms>, Precommit-0<66ms>, Commit-0-0<138ms>, RunTx-0<22ms>, Waiting<1605ms>]. module=main
I[2022-12-31|11:51:10.138][33627:207] Height<802>, Tx<0>, SimTx<802:0>, BlockSize<489>, BTInterval<2063ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<802:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<307>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<108ms>, recvProposal<30ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<46ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1636ms>]. module=main
I[2022-12-31|11:51:12.138][33627:207] Height<803>, Tx<0>, SimTx<803:0>, BlockSize<489>, BTInterval<1922ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<803:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1735ms>]. module=main
I[2022-12-31|11:51:14.138][33627:207] Height<804>, Tx<0>, SimTx<804:0>, BlockSize<489>, BTInterval<1980ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<804:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<248>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<67ms>, Commit-0-0<44ms>, RunTx-0<45ms>, Waiting<1709ms>]. module=main
I[2022-12-31|11:51:16.138][33627:207] Height<805>, Tx<0>, SimTx<805:0>, BlockSize<489>, BTInterval<2072ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<805:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<310>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<102ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<83ms>, Commit-0-0<85ms>, RunTx-0<23ms>, Waiting<1603ms>]. module=main
I[2022-12-31|11:51:18.138][33627:207] Height<806>, Tx<0>, SimTx<806:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<806:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<19ms>>, Iavl[getnode<259>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<45ms>, Commit-0-0<48ms>, RunTx-0<23ms>, Waiting<1686ms>]. module=main
I[2022-12-31|11:51:20.138][33627:207] Height<807>, Tx<0>, SimTx<807:0>, BlockSize<489>, BTInterval<1920ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<807:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<47ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1769ms>]. module=main
I[2022-12-31|11:51:22.138][33627:207] Height<808>, Tx<0>, SimTx<808:0>, BlockSize<489>, BTInterval<2090ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<808:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<46ms>, abci<0ms>, persist<46ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<44ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<76ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<100ms>, Precommit-0<93ms>, Commit-0-0<50ms>, RunTx-0<46ms>, Waiting<1606ms>]. module=main
I[2022-12-31|11:51:24.138][33627:207] Height<809>, Tx<0>, SimTx<809:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<809:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<318>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<91ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1685ms>]. module=main
I[2022-12-31|11:51:26.139][33627:207] Height<810>, Tx<0>, SimTx<810:0>, BlockSize<489>, BTInterval<1984ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<810:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<247>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<62ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<93ms>, Commit-0-0<86ms>, RunTx-0<22ms>, Waiting<1609ms>]. module=main
I[2022-12-31|11:51:28.139][33627:207] Height<811>, Tx<0>, SimTx<811:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<811:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<89ms>, Commit-0-0<81ms>, RunTx-0<23ms>, Waiting<1624ms>]. module=main
I[2022-12-31|11:51:30.139][33627:207] Height<812>, Tx<0>, SimTx<812:0>, BlockSize<489>, BTInterval<2056ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<812:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<116ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<68ms>, Commit-0-0<83ms>, RunTx-0<24ms>, Waiting<1586ms>]. module=main
I[2022-12-31|11:51:32.139][33627:207] Height<813>, Tx<0>, SimTx<813:0>, BlockSize<489>, BTInterval<1898ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<813:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<85ms>, RunTx-0<21ms>, Waiting<1712ms>]. module=main
I[2022-12-31|11:51:34.139][33627:207] Height<814>, Tx<0>, SimTx<814:0>, BlockSize<489>, BTInterval<1971ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<814:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:51:36.139][33627:207] Height<815>, Tx<0>, SimTx<815:0>, BlockSize<487>, BTInterval<2120ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<815:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<312>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<89ms>, Commit-0-0<68ms>, RunTx-0<21ms>, Waiting<1609ms>]. module=main
I[2022-12-31|11:51:38.139][33627:207] Height<816>, Tx<0>, SimTx<816:0>, BlockSize<489>, BTInterval<1883ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<816:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1779ms>]. module=main
I[2022-12-31|11:51:40.139][33627:207] Height<817>, Tx<1>, SimTx<817:0>, BlockSize<842>, BTInterval<2026ms>, LastBlockTime<2000ms>, GasUsed<95531>, SimGasUsed<817:200000>, InvalidTxs<1>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<287>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<69ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1685ms>]. module=main
I[2022-12-31|11:51:42.140][33627:207] Height<818>, Tx<0>, SimTx<818:0>, BlockSize<523>, BTInterval<2056ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<818:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<316>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:51:44.140][33627:207] Height<819>, Tx<0>, SimTx<819:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<819:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1782ms>]. module=main
I[2022-12-31|11:51:46.140][33627:207] Height<820>, Tx<0>, SimTx<820:0>, BlockSize<489>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<820:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<239>, rdb<0>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:51:48.140][33627:207] Height<821>, Tx<0>, SimTx<821:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<821:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<304>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1653ms>]. module=main
I[2022-12-31|11:51:50.140][33627:207] Height<822>, Tx<0>, SimTx<822:0>, BlockSize<489>, BTInterval<1889ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<822:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:51:52.140][33627:207] Height<823>, Tx<0>, SimTx<823:0>, BlockSize<489>, BTInterval<2119ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<823:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<65ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1603ms>]. module=main
I[2022-12-31|11:51:54.140][33627:207] Height<824>, Tx<0>, SimTx<824:0>, BlockSize<489>, BTInterval<1952ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<824:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<314>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1691ms>]. module=main
I[2022-12-31|11:51:56.140][33627:207] Height<825>, Tx<0>, SimTx<825:0>, BlockSize<489>, BTInterval<1927ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<825:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<247>, rdb<8>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:51:58.140][33627:207] Height<826>, Tx<0>, SimTx<826:0>, BlockSize<489>, BTInterval<2062ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<826:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<40ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<44ms>, Commit-0-0<78ms>, RunTx-0<21ms>, Waiting<1686ms>]. module=main
I[2022-12-31|11:52:00.140][33627:207] Height<827>, Tx<0>, SimTx<827:0>, BlockSize<489>, BTInterval<2059ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<827:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<3ms>, abci<0ms>, persist<3ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<2ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<75ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<104ms>, Commit-0-0<86ms>, RunTx-0<3ms>, Waiting<1594ms>]. module=main
I[2022-12-31|11:52:02.140][33627:207] Height<828>, Tx<0>, SimTx<828:0>, BlockSize<489>, BTInterval<1878ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<828:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<45ms>, RunTx-0<22ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:52:04.140][33627:207] Height<829>, Tx<0>, SimTx<829:0>, BlockSize<489>, BTInterval<2081ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<829:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<65ms>, Commit-0-0<92ms>, RunTx-0<25ms>, Waiting<1627ms>]. module=main
I[2022-12-31|11:52:06.140][33627:207] Height<830>, Tx<0>, SimTx<830:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<830:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<68ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1666ms>]. module=main
I[2022-12-31|11:52:08.141][33627:207] Height<831>, Tx<0>, SimTx<831:0>, BlockSize<489>, BTInterval<1931ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<831:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|11:52:10.141][33627:207] Height<832>, Tx<0>, SimTx<832:0>, BlockSize<489>, BTInterval<2068ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<832:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<59ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1678ms>]. module=main
I[2022-12-31|11:52:12.141][33627:207] Height<833>, Tx<0>, SimTx<833:0>, BlockSize<489>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<833:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<305>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<101ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<68ms>, RunTx-0<22ms>, Waiting<1690ms>]. module=main
I[2022-12-31|11:52:14.141][33627:207] Height<834>, Tx<0>, SimTx<834:0>, BlockSize<489>, BTInterval<1934ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<834:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1781ms>]. module=main
I[2022-12-31|11:52:16.141][33627:207] Height<835>, Tx<1>, SimTx<835:0>, BlockSize<842>, BTInterval<2044ms>, LastBlockTime<2000ms>, GasUsed<156378>, SimGasUsed<835:200000>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<286>, rdb<0>, rdbTs<0ms>, savenode<99>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<42ms>, Commit-0-0<85ms>, RunTx-0<22ms>, Waiting<1695ms>]. module=main
I[2022-12-31|11:52:18.141][33627:207] Height<836>, Tx<0>, SimTx<836:0>, BlockSize<523>, BTInterval<1999ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<836:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<309>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<67ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1694ms>]. module=main
I[2022-12-31|11:52:20.141][33627:207] Height<837>, Tx<0>, SimTx<837:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<837:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1819ms>]. module=main
I[2022-12-31|11:52:22.141][33627:207] Height<838>, Tx<0>, SimTx<838:0>, BlockSize<487>, BTInterval<2062ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<838:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<262>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1717ms>]. module=main
I[2022-12-31|11:52:24.141][33627:207] Height<839>, Tx<0>, SimTx<839:0>, BlockSize<489>, BTInterval<2045ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<839:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1671ms>]. module=main
I[2022-12-31|11:52:26.141][33627:207] Height<840>, Tx<0>, SimTx<840:0>, BlockSize<489>, BTInterval<1887ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<840:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1824ms>]. module=main
I[2022-12-31|11:52:28.141][33627:207] Height<841>, Tx<0>, SimTx<841:0>, BlockSize<487>, BTInterval<2125ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<841:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<269>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<43ms>, Commit-0-0<78ms>, RunTx-0<21ms>, Waiting<1662ms>]. module=main
I[2022-12-31|11:52:30.141][33627:207] Height<842>, Tx<0>, SimTx<842:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<842:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1646ms>]. module=main
I[2022-12-31|11:52:32.142][33627:207] Height<843>, Tx<0>, SimTx<843:0>, BlockSize<489>, BTInterval<1926ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<843:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<37ms>, Waiting<1767ms>]. module=main
I[2022-12-31|11:52:34.142][33627:207] Height<844>, Tx<0>, SimTx<844:0>, BlockSize<489>, BTInterval<2113ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<844:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<31ms>, abci<0ms>, persist<31ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<29ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<102ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<80ms>, Commit-0-0<103ms>, RunTx-0<31ms>, Waiting<1563ms>]. module=main
I[2022-12-31|11:52:36.142][33627:207] Height<845>, Tx<0>, SimTx<845:0>, BlockSize<489>, BTInterval<2002ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<845:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<26ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<90ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<89ms>, Precommit-0<96ms>, Commit-0-0<89ms>, RunTx-0<27ms>, Waiting<1563ms>]. module=main
I[2022-12-31|11:52:38.142][33627:207] Height<846>, Tx<0>, SimTx<846:0>, BlockSize<489>, BTInterval<1966ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<846:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<314>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<93ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1701ms>]. module=main
I[2022-12-31|11:52:40.142][33627:207] Height<847>, Tx<0>, SimTx<847:0>, BlockSize<489>, BTInterval<1878ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<847:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<248>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<41ms>, RunTx-0<38ms>, Waiting<1808ms>]. module=main
I[2022-12-31|11:52:42.142][33627:207] Height<848>, Tx<0>, SimTx<848:0>, BlockSize<487>, BTInterval<2129ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<848:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<108ms>, Precommit-0<102ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1613ms>]. module=main
I[2022-12-31|11:52:44.142][33627:207] Height<849>, Tx<0>, SimTx<849:0>, BlockSize<489>, BTInterval<1999ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<849:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1976ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:52:46.142][33627:207] Height<850>, Tx<0>, SimTx<850:0>, BlockSize<489>, BTInterval<1909ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<850:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<239>, rdb<8>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1785ms>]. module=main
I[2022-12-31|11:52:48.142][33627:207] Height<851>, Tx<0>, SimTx<851:0>, BlockSize<489>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<851:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<239>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<92ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1646ms>]. module=main
I[2022-12-31|11:52:50.142][33627:207] Height<852>, Tx<0>, SimTx<852:0>, BlockSize<489>, BTInterval<2044ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<852:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<29ms>, abci<0ms>, persist<29ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<27ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<120ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<60ms>, Precommit-0<184ms>, Commit-0-0<65ms>, RunTx-0<29ms>, Waiting<1510ms>]. module=main
I[2022-12-31|11:52:52.142][33627:207] Height<853>, Tx<0>, SimTx<853:0>, BlockSize<489>, BTInterval<1991ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<853:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<74ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<45ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1680ms>]. module=main
I[2022-12-31|11:52:54.143][33627:207] Height<854>, Tx<0>, SimTx<854:0>, BlockSize<489>, BTInterval<1898ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<854:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<57ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<59ms>, Commit-0-0<42ms>, RunTx-0<26ms>, Waiting<1765ms>]. module=main
I[2022-12-31|11:52:56.143][33627:207] Height<855>, Tx<0>, SimTx<855:0>, BlockSize<489>, BTInterval<2131ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<855:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<3ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<2ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<95ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<94ms>, Precommit-0<73ms>, Commit-0-0<87ms>, RunTx-0<4ms>, Waiting<1601ms>]. module=main
I[2022-12-31|11:52:58.143][33627:207] Height<856>, Tx<0>, SimTx<856:0>, BlockSize<489>, BTInterval<1992ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<856:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<25ms>, abci<0ms>, persist<25ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<248>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<89ms>, Precommit-0<69ms>, Commit-0-0<74ms>, RunTx-0<25ms>, Waiting<1600ms>]. module=main
I[2022-12-31|11:53:00.143][33627:207] Height<857>, Tx<0>, SimTx<857:0>, BlockSize<489>, BTInterval<1871ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<857:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<239>, rdb<4>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<24ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1789ms>]. module=main
I[2022-12-31|11:53:02.143][33627:207] Height<858>, Tx<0>, SimTx<858:0>, BlockSize<487>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<858:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<321>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<85ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:53:04.143][33627:207] Height<859>, Tx<0>, SimTx<859:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<859:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<106ms>, Commit-0-0<106ms>, RunTx-0<21ms>, Waiting<1613ms>]. module=main
I[2022-12-31|11:53:06.143][33627:207] Height<860>, Tx<0>, SimTx<860:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<860:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<237>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<46ms>, Precommit-0<42ms>, Commit-0-0<44ms>, RunTx-0<22ms>, Waiting<1749ms>]. module=main
I[2022-12-31|11:53:08.143][33627:207] Height<861>, Tx<0>, SimTx<861:0>, BlockSize<489>, BTInterval<2031ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<861:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<89ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1631ms>]. module=main
I[2022-12-31|11:53:10.143][33627:207] Height<862>, Tx<0>, SimTx<862:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<862:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<83ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1660ms>]. module=main
I[2022-12-31|11:53:12.143][33627:207] Height<863>, Tx<0>, SimTx<863:0>, BlockSize<489>, BTInterval<1896ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<863:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1825ms>]. module=main
I[2022-12-31|11:53:14.143][33627:207] Height<864>, Tx<0>, SimTx<864:0>, BlockSize<487>, BTInterval<2092ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<864:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<65ms>, Commit-0-0<65ms>, RunTx-0<44ms>, Waiting<1664ms>]. module=main
I[2022-12-31|11:53:16.143][33627:207] Height<865>, Tx<0>, SimTx<865:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<865:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<3ms>, flushMeta<18ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1690ms>]. module=main
I[2022-12-31|11:53:18.144][33627:207] Height<866>, Tx<0>, SimTx<866:0>, BlockSize<489>, BTInterval<2010ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<866:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<80ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1723ms>]. module=main
I[2022-12-31|11:53:20.144][33627:207] Height<867>, Tx<0>, SimTx<867:0>, BlockSize<489>, BTInterval<1943ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<867:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<65ms>, Commit-0-0<63ms>, RunTx-0<44ms>, Waiting<1713ms>]. module=main
I[2022-12-31|11:53:22.144][33627:207] Height<868>, Tx<0>, SimTx<868:0>, BlockSize<489>, BTInterval<2083ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<868:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<66ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1650ms>]. module=main
I[2022-12-31|11:53:24.144][33627:207] Height<869>, Tx<0>, SimTx<869:0>, BlockSize<489>, BTInterval<1926ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<869:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1768ms>]. module=main
I[2022-12-31|11:53:26.144][33627:207] Height<870>, Tx<0>, SimTx<870:0>, BlockSize<489>, BTInterval<2008ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<870:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<249>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1695ms>]. module=main
I[2022-12-31|11:53:28.144][33627:207] Height<871>, Tx<0>, SimTx<871:0>, BlockSize<489>, BTInterval<2052ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<871:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<317>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<78ms>, RunTx-0<22ms>, Waiting<1672ms>]. module=main
I[2022-12-31|11:53:30.144][33627:207] Height<872>, Tx<0>, SimTx<872:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<872:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<239>, rdb<4>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<44ms>, Commit-0-0<49ms>, RunTx-0<20ms>, Waiting<1790ms>]. module=main
I[2022-12-31|11:53:32.144][33627:207] Height<873>, Tx<0>, SimTx<873:0>, BlockSize<487>, BTInterval<2105ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<873:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<242>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<102ms>, Commit-0-0<64ms>, RunTx-0<21ms>, Waiting<1609ms>]. module=main
I[2022-12-31|11:53:34.144][33627:207] Height<874>, Tx<0>, SimTx<874:0>, BlockSize<489>, BTInterval<1948ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<874:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<39ms>, Waiting<1683ms>]. module=main
I[2022-12-31|11:53:36.144][33627:207] Height<875>, Tx<0>, SimTx<875:0>, BlockSize<489>, BTInterval<2076ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<875:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<38ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1643ms>]. module=main
I[2022-12-31|11:53:38.144][33627:207] Height<876>, Tx<0>, SimTx<876:0>, BlockSize<489>, BTInterval<1927ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<876:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1738ms>]. module=main
I[2022-12-31|11:53:40.145][33627:207] Height<877>, Tx<0>, SimTx<877:0>, BlockSize<489>, BTInterval<1953ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<877:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<309>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<67ms>, Commit-0-0<84ms>, RunTx-0<21ms>, Waiting<1718ms>]. module=main
I[2022-12-31|11:53:42.145][33627:207] Height<878>, Tx<0>, SimTx<878:0>, BlockSize<489>, BTInterval<2081ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<878:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<63ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1641ms>]. module=main
I[2022-12-31|11:53:44.145][33627:207] Height<879>, Tx<0>, SimTx<879:0>, BlockSize<489>, BTInterval<1982ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<879:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1977ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1721ms>]. module=main
I[2022-12-31|11:53:46.145][33627:207] Height<880>, Tx<0>, SimTx<880:0>, BlockSize<489>, BTInterval<1934ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<880:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<315>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1785ms>]. module=main
I[2022-12-31|11:53:48.145][33627:207] Height<881>, Tx<0>, SimTx<881:0>, BlockSize<489>, BTInterval<2103ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<881:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<102ms>, Precommit-0<68ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1636ms>]. module=main
I[2022-12-31|11:53:50.145][33627:207] Height<882>, Tx<0>, SimTx<882:0>, BlockSize<489>, BTInterval<1934ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<882:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1746ms>]. module=main
I[2022-12-31|11:53:52.145][33627:207] Height<883>, Tx<0>, SimTx<883:0>, BlockSize<489>, BTInterval<1983ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<883:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<306>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<43ms>, Waiting<1701ms>]. module=main
I[2022-12-31|11:53:54.145][33627:207] Height<884>, Tx<0>, SimTx<884:0>, BlockSize<489>, BTInterval<2047ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<884:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<239>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<84ms>, Commit-0-0<63ms>, RunTx-0<20ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:53:56.145][33627:207] Height<885>, Tx<0>, SimTx<885:0>, BlockSize<489>, BTInterval<1890ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<885:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<42ms>, Waiting<1805ms>]. module=main
I[2022-12-31|11:53:58.145][33627:207] Height<886>, Tx<0>, SimTx<886:0>, BlockSize<487>, BTInterval<2041ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<886:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<64ms>, Commit-0-0<100ms>, RunTx-0<43ms>, Waiting<1684ms>]. module=main
I[2022-12-31|11:54:00.145][33627:207] Height<887>, Tx<0>, SimTx<887:0>, BlockSize<489>, BTInterval<2020ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<887:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<245>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1697ms>]. module=main
I[2022-12-31|11:54:02.145][33627:207] Height<888>, Tx<0>, SimTx<888:0>, BlockSize<489>, BTInterval<2049ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<888:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1674ms>]. module=main
I[2022-12-31|11:54:04.146][33627:207] Height<889>, Tx<0>, SimTx<889:0>, BlockSize<489>, BTInterval<1924ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<889:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<307>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1790ms>]. module=main
I[2022-12-31|11:54:06.146][33627:207] Height<890>, Tx<0>, SimTx<890:0>, BlockSize<489>, BTInterval<2128ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<890:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<42ms>, Commit-0-0<85ms>, RunTx-0<21ms>, Waiting<1618ms>]. module=main
I[2022-12-31|11:54:08.146][33627:207] Height<891>, Tx<0>, SimTx<891:0>, BlockSize<489>, BTInterval<1835ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<891:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<22ms>, Commit-0-0<48ms>, RunTx-0<21ms>, Waiting<1820ms>]. module=main
I[2022-12-31|11:54:10.146][33627:207] Height<892>, Tx<0>, SimTx<892:0>, BlockSize<487>, BTInterval<2082ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<892:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<37ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1690ms>]. module=main
I[2022-12-31|11:54:12.146][33627:207] Height<893>, Tx<0>, SimTx<893:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<893:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<248>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<58ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<87ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1662ms>]. module=main
I[2022-12-31|11:54:14.146][33627:207] Height<894>, Tx<0>, SimTx<894:0>, BlockSize<489>, BTInterval<1903ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<894:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1800ms>]. module=main
I[2022-12-31|11:54:16.146][33627:207] Height<895>, Tx<0>, SimTx<895:0>, BlockSize<487>, BTInterval<2041ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<895:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<248>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<66ms>, Commit-0-0<69ms>, RunTx-0<22ms>, Waiting<1710ms>]. module=main
I[2022-12-31|11:54:18.146][33627:207] Height<896>, Tx<0>, SimTx<896:0>, BlockSize<489>, BTInterval<2017ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<896:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:54:20.146][33627:207] Height<897>, Tx<0>, SimTx<897:0>, BlockSize<489>, BTInterval<1916ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<897:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1826ms>]. module=main
I[2022-12-31|11:54:22.146][33627:207] Height<898>, Tx<0>, SimTx<898:0>, BlockSize<487>, BTInterval<2106ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<898:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<85ms>, Commit-0-0<63ms>, RunTx-0<21ms>, Waiting<1656ms>]. module=main
I[2022-12-31|11:54:24.146][33627:207] Height<899>, Tx<0>, SimTx<899:0>, BlockSize<489>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<899:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<107ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<63ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1631ms>]. module=main
I[2022-12-31|11:54:26.146][33627:207] Height<900>, Tx<0>, SimTx<900:0>, BlockSize<489>, BTInterval<1948ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<900:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<241>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<58ms>, Commit-0-0<46ms>, RunTx-0<37ms>, Waiting<1722ms>]. module=main
I[2022-12-31|11:54:28.146][33627:207] Height<901>, Tx<0>, SimTx<901:0>, BlockSize<489>, BTInterval<2006ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<901:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<248>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<79ms>, Commit-0-0<100ms>, RunTx-0<22ms>, Waiting<1641ms>]. module=main
I[2022-12-31|11:54:30.147][33627:207] Height<902>, Tx<0>, SimTx<902:0>, BlockSize<489>, BTInterval<2018ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<902:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<67ms>, Commit-0-0<63ms>, RunTx-0<42ms>, Waiting<1650ms>]. module=main
I[2022-12-31|11:54:32.147][33627:207] Height<903>, Tx<0>, SimTx<903:0>, BlockSize<489>, BTInterval<1939ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<903:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<42ms>, Commit-0-0<41ms>, RunTx-0<21ms>, Waiting<1779ms>]. module=main
I[2022-12-31|11:54:34.147][33627:207] Height<904>, Tx<0>, SimTx<904:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<904:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<59ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<84ms>, Commit-0-0<63ms>, RunTx-0<59ms>, Waiting<1683ms>]. module=main
I[2022-12-31|11:54:36.147][33627:207] Height<905>, Tx<0>, SimTx<905:0>, BlockSize<489>, BTInterval<2047ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<905:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<316>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1978ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<21ms>, Commit-0-0<78ms>, RunTx-0<21ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:54:38.147][33627:207] Height<906>, Tx<0>, SimTx<906:0>, BlockSize<489>, BTInterval<1993ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<906:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<58ms>, RunTx-0<26ms>, Waiting<1724ms>]. module=main
I[2022-12-31|11:54:40.147][33627:207] Height<907>, Tx<0>, SimTx<907:0>, BlockSize<489>, BTInterval<1920ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<907:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<236>, rdb<0>, rdbTs<0ms>, savenode<88>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<27ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1818ms>]. module=main
I[2022-12-31|11:54:42.147][33627:207] Height<908>, Tx<0>, SimTx<908:0>, BlockSize<487>, BTInterval<2114ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<908:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<310>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<60ms>, Precommit-0<49ms>, Commit-0-0<61ms>, RunTx-0<22ms>, Waiting<1683ms>]. module=main
I[2022-12-31|11:54:44.147][33627:207] Height<909>, Tx<0>, SimTx<909:0>, BlockSize<489>, BTInterval<1991ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<909:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<63ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1717ms>]. module=main
I[2022-12-31|11:54:46.147][33627:207] Height<910>, Tx<0>, SimTx<910:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<910:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<240>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1759ms>]. module=main
I[2022-12-31|11:54:48.147][33627:207] Height<911>, Tx<0>, SimTx<911:0>, BlockSize<489>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<911:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<72ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<116ms>, Commit-0-0<72ms>, RunTx-0<42ms>, Waiting<1590ms>]. module=main
I[2022-12-31|11:54:50.147][33627:207] Height<912>, Tx<0>, SimTx<912:0>, BlockSize<489>, BTInterval<2025ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<912:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<87ms>, Precommit-0<65ms>, Commit-0-0<44ms>, RunTx-0<23ms>, Waiting<1681ms>]. module=main
I[2022-12-31|11:54:52.148][33627:207] Height<913>, Tx<0>, SimTx<913:0>, BlockSize<489>, BTInterval<1935ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<913:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<49ms>, Commit-0-0<51ms>, RunTx-0<27ms>, Waiting<1736ms>]. module=main
I[2022-12-31|11:54:54.148][33627:207] Height<914>, Tx<0>, SimTx<914:0>, BlockSize<489>, BTInterval<2025ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<914:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<25ms>, abci<0ms>, persist<25ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<54ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<68ms>, Commit-0-0<69ms>, RunTx-0<25ms>, Waiting<1672ms>]. module=main
I[2022-12-31|11:54:56.148][33627:207] Height<915>, Tx<0>, SimTx<915:0>, BlockSize<489>, BTInterval<2020ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<915:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<6ms>, abci<0ms>, persist<6ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<4ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<75ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<73ms>, Precommit-0<51ms>, Commit-0-0<75ms>, RunTx-0<6ms>, Waiting<1684ms>]. module=main
I[2022-12-31|11:54:58.148][33627:207] Height<916>, Tx<0>, SimTx<916:0>, BlockSize<489>, BTInterval<1992ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<916:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<5ms>, abci<0ms>, persist<5ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<76ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<51ms>, Commit-0-0<50ms>, RunTx-0<5ms>, Waiting<1721ms>]. module=main
I[2022-12-31|11:55:00.148][33627:207] Height<917>, Tx<0>, SimTx<917:0>, BlockSize<489>, BTInterval<1952ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<917:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<85ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1720ms>]. module=main
I[2022-12-31|11:55:02.148][33627:207] Height<918>, Tx<0>, SimTx<918:0>, BlockSize<489>, BTInterval<2079ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<918:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<81ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<102ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1581ms>]. module=main
I[2022-12-31|11:55:04.148][33627:207] Height<919>, Tx<0>, SimTx<919:0>, BlockSize<489>, BTInterval<1958ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<919:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<252>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<43ms>, Commit-0-0<58ms>, RunTx-0<22ms>, Waiting<1709ms>]. module=main
I[2022-12-31|11:55:06.148][33627:207] Height<920>, Tx<0>, SimTx<920:0>, BlockSize<489>, BTInterval<2084ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<920:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<309>, rdb<5>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<117ms>, Precommit-0<90ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1579ms>]. module=main
I[2022-12-31|11:55:08.150][33627:207] Height<921>, Tx<0>, SimTx<921:0>, BlockSize<489>, BTInterval<1908ms>, LastBlockTime<2001ms>, GasUsed<0>, SimGasUsed<921:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<10ms>, flushMeta<13ms>>, Iavl[getnode<238>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2001ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<112ms>, Commit-0-0<95ms>, RunTx-0<24ms>, Waiting<1638ms>]. module=main
I[2022-12-31|11:55:10.150][33627:207] Height<922>, Tx<0>, SimTx<922:0>, BlockSize<489>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<922:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<47ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<22ms>, Commit-0-0<66ms>, RunTx-0<22ms>, Waiting<1712ms>]. module=main
I[2022-12-31|11:55:12.150][33627:207] Height<923>, Tx<0>, SimTx<923:0>, BlockSize<489>, BTInterval<1959ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<923:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<40ms>, Precommit-0<65ms>, Commit-0-0<68ms>, RunTx-0<23ms>, Waiting<1730ms>]. module=main
I[2022-12-31|11:55:14.150][33627:207] Height<924>, Tx<0>, SimTx<924:0>, BlockSize<489>, BTInterval<2031ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<924:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<321>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<80ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:55:16.150][33627:207] Height<925>, Tx<0>, SimTx<925:0>, BlockSize<489>, BTInterval<2084ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<925:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1974ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<102ms>, Precommit-0<46ms>, Commit-0-0<84ms>, RunTx-0<23ms>, Waiting<1616ms>]. module=main
I[2022-12-31|11:55:18.150][33627:207] Height<926>, Tx<0>, SimTx<926:0>, BlockSize<489>, BTInterval<1932ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<926:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<44ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1708ms>]. module=main
I[2022-12-31|11:55:20.150][33627:207] Height<927>, Tx<0>, SimTx<927:0>, BlockSize<489>, BTInterval<1947ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<927:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<314>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<43ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1739ms>]. module=main
I[2022-12-31|11:55:22.150][33627:207] Height<928>, Tx<0>, SimTx<928:0>, BlockSize<489>, BTInterval<2102ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<928:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<45ms>, Commit-0-0<67ms>, RunTx-0<22ms>, Waiting<1653ms>]. module=main
I[2022-12-31|11:55:24.150][33627:207] Height<929>, Tx<0>, SimTx<929:0>, BlockSize<489>, BTInterval<1903ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<929:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<47ms>, RunTx-0<21ms>, Waiting<1771ms>]. module=main
I[2022-12-31|11:55:26.151][33627:207] Height<930>, Tx<0>, SimTx<930:0>, BlockSize<489>, BTInterval<2035ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<930:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<314>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<61ms>, Precommit-0<108ms>, Commit-0-0<71ms>, RunTx-0<21ms>, Waiting<1647ms>]. module=main
I[2022-12-31|11:55:28.151][33627:207] Height<931>, Tx<0>, SimTx<931:0>, BlockSize<489>, BTInterval<2049ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<931:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<81ms>, recvProposal<51ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<83ms>, Commit-0-0<65ms>, RunTx-0<26ms>, Waiting<1623ms>]. module=main
I[2022-12-31|11:55:30.151][33627:207] Height<932>, Tx<0>, SimTx<932:0>, BlockSize<489>, BTInterval<1888ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<932:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1803ms>]. module=main
I[2022-12-31|11:55:32.151][33627:207] Height<933>, Tx<0>, SimTx<933:0>, BlockSize<487>, BTInterval<2082ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<933:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<313>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<121ms>, Commit-0-0<60ms>, RunTx-0<23ms>, Waiting<1658ms>]. module=main
I[2022-12-31|11:55:34.151][33627:207] Height<934>, Tx<0>, SimTx<934:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<934:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<248>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<60ms>, Precommit-0<82ms>, Commit-0-0<66ms>, RunTx-0<43ms>, Waiting<1674ms>]. module=main
I[2022-12-31|11:55:36.151][33627:207] Height<935>, Tx<0>, SimTx<935:0>, BlockSize<489>, BTInterval<2087ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<935:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<242>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1974ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<103ms>, Precommit-0<44ms>, Commit-0-0<83ms>, RunTx-0<23ms>, Waiting<1610ms>]. module=main
I[2022-12-31|11:55:38.151][33627:207] Height<936>, Tx<0>, SimTx<936:0>, BlockSize<489>, BTInterval<1889ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<936:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<59ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<26ms>, Waiting<1759ms>]. module=main
I[2022-12-31|11:55:40.151][33627:207] Height<937>, Tx<0>, SimTx<937:0>, BlockSize<489>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<937:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<117ms>, Precommit-0<104ms>, Commit-0-0<81ms>, RunTx-0<22ms>, Waiting<1586ms>]. module=main
I[2022-12-31|11:55:42.151][33627:207] Height<938>, Tx<0>, SimTx<938:0>, BlockSize<489>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<938:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<101ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<109ms>, Precommit-0<62ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1544ms>]. module=main
I[2022-12-31|11:55:44.151][33627:207] Height<939>, Tx<0>, SimTx<939:0>, BlockSize<489>, BTInterval<1908ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<939:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<307>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<101ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<121ms>, Commit-0-0<42ms>, RunTx-0<44ms>, Waiting<1612ms>]. module=main
I[2022-12-31|11:55:46.152][33627:207] Height<940>, Tx<0>, SimTx<940:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<940:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<249>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<73ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<49ms>, Commit-0-0<125ms>, RunTx-0<23ms>, Waiting<1617ms>]. module=main
I[2022-12-31|11:55:48.152][33627:207] Height<941>, Tx<0>, SimTx<941:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<941:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<48ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<43ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1977ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<61ms>, Commit-0-0<66ms>, RunTx-0<48ms>, Waiting<1678ms>]. module=main
I[2022-12-31|11:55:50.152][33627:207] Height<942>, Tx<0>, SimTx<942:0>, BlockSize<489>, BTInterval<2007ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<942:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1972ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<50ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<24ms>, Waiting<1721ms>]. module=main
I[2022-12-31|11:55:52.152][33627:207] Height<943>, Tx<0>, SimTx<943:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<943:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<44ms>, Commit-0-0<47ms>, RunTx-0<37ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:55:54.152][33627:207] Height<944>, Tx<0>, SimTx<944:0>, BlockSize<487>, BTInterval<2165ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<944:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<59ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<100ms>, Precommit-0<105ms>, Commit-0-0<58ms>, RunTx-0<59ms>, Waiting<1546ms>]. module=main
I[2022-12-31|11:55:56.152][33627:207] Height<945>, Tx<0>, SimTx<945:0>, BlockSize<489>, BTInterval<1924ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<945:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<81ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<71ms>, RunTx-0<39ms>, Waiting<1667ms>]. module=main
I[2022-12-31|11:55:58.152][33627:207] Height<946>, Tx<0>, SimTx<946:0>, BlockSize<489>, BTInterval<1916ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<946:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<36ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<19ms>, Precommit-0<45ms>, Commit-0-0<44ms>, RunTx-0<39ms>, Waiting<1777ms>]. module=main
I[2022-12-31|11:56:00.152][33627:207] Height<947>, Tx<0>, SimTx<947:0>, BlockSize<487>, BTInterval<2112ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<947:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<99ms>, Commit-0-0<90ms>, RunTx-0<23ms>, Waiting<1595ms>]. module=main
I[2022-12-31|11:56:02.152][33627:207] Height<948>, Tx<0>, SimTx<948:0>, BlockSize<489>, BTInterval<2029ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<948:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<100ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<96ms>, Precommit-0<43ms>, Commit-0-0<84ms>, RunTx-0<21ms>, Waiting<1614ms>]. module=main
I[2022-12-31|11:56:04.152][33627:207] Height<949>, Tx<0>, SimTx<949:0>, BlockSize<489>, BTInterval<1912ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<949:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<242>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<53ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1742ms>]. module=main
I[2022-12-31|11:56:06.153][33627:207] Height<950>, Tx<0>, SimTx<950:0>, BlockSize<489>, BTInterval<1974ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<950:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<5ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<28ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<31ms>, Commit-0-0<51ms>, RunTx-0<5ms>, Waiting<1788ms>]. module=main
I[2022-12-31|11:56:08.153][33627:207] Height<951>, Tx<0>, SimTx<951:0>, BlockSize<489>, BTInterval<2099ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<951:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<49ms>, abci<0ms>, persist<49ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<47ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<69ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<66ms>, Commit-0-0<87ms>, RunTx-0<49ms>, Waiting<1575ms>]. module=main
I[2022-12-31|11:56:10.153][33627:207] Height<952>, Tx<0>, SimTx<952:0>, BlockSize<489>, BTInterval<2082ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<952:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<312>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<124ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<106ms>, Precommit-0<83ms>, Commit-0-0<70ms>, RunTx-0<22ms>, Waiting<1535ms>]. module=main
I[2022-12-31|11:56:12.153][33627:207] Height<953>, Tx<0>, SimTx<953:0>, BlockSize<489>, BTInterval<1824ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<953:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1761ms>]. module=main
I[2022-12-31|11:56:14.153][33627:207] Height<954>, Tx<0>, SimTx<954:0>, BlockSize<489>, BTInterval<2005ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<954:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<65ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1713ms>]. module=main
I[2022-12-31|11:56:16.153][33627:207] Height<955>, Tx<0>, SimTx<955:0>, BlockSize<489>, BTInterval<2055ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<955:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<318>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<87ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1657ms>]. module=main
I[2022-12-31|11:56:18.153][33627:207] Height<956>, Tx<0>, SimTx<956:0>, BlockSize<489>, BTInterval<2038ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<956:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<133ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<44ms>, Commit-0-0<68ms>, RunTx-0<23ms>, Waiting<1635ms>]. module=main
I[2022-12-31|11:56:20.153][33627:207] Height<957>, Tx<0>, SimTx<957:0>, BlockSize<489>, BTInterval<1912ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<957:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<45ms>, Commit-0-0<48ms>, RunTx-0<26ms>, Waiting<1739ms>]. module=main
I[2022-12-31|11:56:22.153][33627:207] Height<958>, Tx<0>, SimTx<958:0>, BlockSize<489>, BTInterval<1990ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<958:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<316>, rdb<6>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<64ms>, Commit-0-0<65ms>, RunTx-0<43ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:56:24.153][33627:207] Height<959>, Tx<0>, SimTx<959:0>, BlockSize<489>, BTInterval<2042ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<959:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<241>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<44ms>, Commit-0-0<67ms>, RunTx-0<26ms>, Waiting<1687ms>]. module=main
I[2022-12-31|11:56:26.154][33627:207] Height<960>, Tx<0>, SimTx<960:0>, BlockSize<489>, BTInterval<1943ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<960:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<243>, rdb<7>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1772ms>]. module=main
I[2022-12-31|11:56:28.154][33627:207] Height<961>, Tx<0>, SimTx<961:0>, BlockSize<489>, BTInterval<2047ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<961:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<75ms>, abci<0ms>, persist<75ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<73ms>>, Iavl[getnode<307>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<50ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<75ms>, Waiting<1633ms>]. module=main
I[2022-12-31|11:56:30.154][33627:207] Height<962>, Tx<0>, SimTx<962:0>, BlockSize<489>, BTInterval<2033ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<962:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<240>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1651ms>]. module=main
I[2022-12-31|11:56:32.154][33627:207] Height<963>, Tx<0>, SimTx<963:0>, BlockSize<489>, BTInterval<1891ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<963:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1803ms>]. module=main
I[2022-12-31|11:56:34.154][33627:207] Height<964>, Tx<0>, SimTx<964:0>, BlockSize<487>, BTInterval<2144ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<964:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<29ms>, abci<0ms>, persist<28ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<25ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<88ms>, Precommit-0<148ms>, Commit-0-0<98ms>, RunTx-0<29ms>, Waiting<1491ms>]. module=main
I[2022-12-31|11:56:36.154][33627:207] Height<965>, Tx<0>, SimTx<965:0>, BlockSize<489>, BTInterval<1915ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<965:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<80ms>, RunTx-0<44ms>, Waiting<1661ms>]. module=main
I[2022-12-31|11:56:38.154][33627:207] Height<966>, Tx<0>, SimTx<966:0>, BlockSize<489>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<966:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<80ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1681ms>]. module=main
I[2022-12-31|11:56:40.154][33627:207] Height<967>, Tx<0>, SimTx<967:0>, BlockSize<489>, BTInterval<1930ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<967:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<311>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<71ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<45ms>, Commit-0-0<48ms>, RunTx-0<22ms>, Waiting<1744ms>]. module=main
I[2022-12-31|11:56:42.154][33627:207] Height<968>, Tx<0>, SimTx<968:0>, BlockSize<489>, BTInterval<1994ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<968:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<67ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1711ms>]. module=main
I[2022-12-31|11:56:44.155][33627:207] Height<969>, Tx<0>, SimTx<969:0>, BlockSize<489>, BTInterval<2044ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<969:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<43ms>, Commit-0-0<78ms>, RunTx-0<22ms>, Waiting<1677ms>]. module=main
I[2022-12-31|11:56:46.155][33627:207] Height<970>, Tx<0>, SimTx<970:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<970:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<312>, rdb<2>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<65ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1675ms>]. module=main
I[2022-12-31|11:56:48.155][33627:207] Height<971>, Tx<0>, SimTx<971:0>, BlockSize<489>, BTInterval<1931ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<971:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<81ms>, Commit-0-0<102ms>, RunTx-0<22ms>, Waiting<1647ms>]. module=main
I[2022-12-31|11:56:50.155][33627:207] Height<972>, Tx<0>, SimTx<972:0>, BlockSize<489>, BTInterval<1985ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<972:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:56:52.155][33627:207] Height<973>, Tx<0>, SimTx<973:0>, BlockSize<489>, BTInterval<2048ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<973:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<314>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<45ms>, Commit-0-0<44ms>, RunTx-0<22ms>, Waiting<1707ms>]. module=main
I[2022-12-31|11:56:54.155][33627:207] Height<974>, Tx<0>, SimTx<974:0>, BlockSize<489>, BTInterval<1929ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<974:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:56:56.155][33627:207] Height<975>, Tx<0>, SimTx<975:0>, BlockSize<489>, BTInterval<2085ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<975:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1674ms>]. module=main
I[2022-12-31|11:56:58.155][33627:207] Height<976>, Tx<0>, SimTx<976:0>, BlockSize<489>, BTInterval<1933ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<976:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<45ms>, Commit-0-0<48ms>, RunTx-0<23ms>, Waiting<1756ms>]. module=main
I[2022-12-31|11:57:00.155][33627:207] Height<977>, Tx<0>, SimTx<977:0>, BlockSize<489>, BTInterval<2001ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<977:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<107ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1675ms>]. module=main
I[2022-12-31|11:57:02.156][33627:207] Height<978>, Tx<0>, SimTx<978:0>, BlockSize<489>, BTInterval<2066ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<978:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<0ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<65ms>, Commit-0-0<100ms>, RunTx-0<1ms>, Waiting<1636ms>]. module=main
I[2022-12-31|11:57:04.156][33627:207] Height<979>, Tx<0>, SimTx<979:0>, BlockSize<489>, BTInterval<1891ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<979:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1803ms>]. module=main
I[2022-12-31|11:57:06.156][33627:207] Height<980>, Tx<0>, SimTx<980:0>, BlockSize<487>, BTInterval<2095ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<980:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<1>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<48ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1664ms>]. module=main
I[2022-12-31|11:57:08.156][33627:207] Height<981>, Tx<0>, SimTx<981:0>, BlockSize<489>, BTInterval<1969ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<981:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<254>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<105ms>, Commit-0-0<68ms>, RunTx-0<44ms>, Waiting<1650ms>]. module=main
I[2022-12-31|11:57:10.156][33627:207] Height<982>, Tx<0>, SimTx<982:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<982:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1802ms>]. module=main
I[2022-12-31|11:57:12.156][33627:207] Height<983>, Tx<0>, SimTx<983:0>, BlockSize<487>, BTInterval<2153ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<983:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<61ms>, abci<0ms>, persist<61ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<59ms>>, Iavl[getnode<309>, rdb<4>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<71ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<111ms>, Precommit-0<88ms>, Commit-0-0<86ms>, RunTx-0<61ms>, Waiting<1521ms>]. module=main
I[2022-12-31|11:57:14.156][33627:207] Height<984>, Tx<0>, SimTx<984:0>, BlockSize<489>, BTInterval<1878ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<984:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<53ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1704ms>]. module=main
I[2022-12-31|11:57:16.156][33627:207] Height<985>, Tx<0>, SimTx<985:0>, BlockSize<489>, BTInterval<2092ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<985:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1968ms>, enterPropose-0-y-f515c7<73ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<67ms>, Commit-0-0<87ms>, RunTx-0<22ms>, Waiting<1610ms>]. module=main
I[2022-12-31|11:57:18.156][33627:207] Height<986>, Tx<0>, SimTx<986:0>, BlockSize<489>, BTInterval<2001ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<986:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<318>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1978ms>, enterPropose-0-y-f515c7<94ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<72ms>, Commit-0-0<73ms>, RunTx-0<4ms>, Waiting<1634ms>]. module=main
I[2022-12-31|11:57:20.156][33627:207] Height<987>, Tx<0>, SimTx<987:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<987:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<5ms>, abci<0ms>, persist<5ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<3ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<54ms>, Precommit-0<52ms>, Commit-0-0<51ms>, RunTx-0<6ms>, Waiting<1766ms>]. module=main
I[2022-12-31|11:57:22.156][33627:207] Height<988>, Tx<0>, SimTx<988:0>, BlockSize<489>, BTInterval<2096ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<988:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<248>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<78ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<76ms>, Commit-0-0<75ms>, RunTx-0<60ms>, Waiting<1568ms>]. module=main
I[2022-12-31|11:57:24.157][33627:207] Height<989>, Tx<0>, SimTx<989:0>, BlockSize<489>, BTInterval<1896ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<989:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<62ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1759ms>]. module=main
I[2022-12-31|11:57:26.157][33627:207] Height<990>, Tx<0>, SimTx<990:0>, BlockSize<489>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<990:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<86ms>, Commit-0-0<86ms>, RunTx-0<22ms>, Waiting<1658ms>]. module=main
I[2022-12-31|11:57:28.157][33627:207] Height<991>, Tx<0>, SimTx<991:0>, BlockSize<489>, BTInterval<1954ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<991:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<252>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1748ms>]. module=main
I[2022-12-31|11:57:30.157][33627:207] Height<992>, Tx<0>, SimTx<992:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<992:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<28ms>, abci<0ms>, persist<28ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<26ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<64ms>, Commit-0-0<64ms>, RunTx-0<28ms>, Waiting<1702ms>]. module=main
I[2022-12-31|11:57:32.157][33627:207] Height<993>, Tx<0>, SimTx<993:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<993:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<245>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1756ms>]. module=main
I[2022-12-31|11:57:34.157][33627:207] Height<994>, Tx<0>, SimTx<994:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<994:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<85ms>, RunTx-0<43ms>, Waiting<1675ms>]. module=main
I[2022-12-31|11:57:36.157][33627:207] Height<995>, Tx<0>, SimTx<995:0>, BlockSize<489>, BTInterval<2059ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<995:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<118ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1641ms>]. module=main
I[2022-12-31|11:57:38.157][33627:207] Height<996>, Tx<0>, SimTx<996:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<996:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:57:40.157][33627:207] Height<997>, Tx<0>, SimTx<997:0>, BlockSize<489>, BTInterval<1992ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<997:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<47ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1646ms>]. module=main
I[2022-12-31|11:57:42.157][33627:207] Height<998>, Tx<0>, SimTx<998:0>, BlockSize<489>, BTInterval<2014ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<998:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<24ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<86ms>, Commit-0-0<68ms>, RunTx-0<26ms>, Waiting<1622ms>]. module=main
I[2022-12-31|11:57:44.158][33627:207] Height<999>, Tx<0>, SimTx<999:0>, BlockSize<489>, BTInterval<1893ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<999:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1802ms>]. module=main
I[2022-12-31|11:57:46.158][33627:207] Height<1000>, Tx<0>, SimTx<1000:0>, BlockSize<487>, BTInterval<2098ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1000:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<248>, rdb<11>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<44ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1679ms>]. module=main
I[2022-12-31|11:57:48.158][33627:207] Height<1001>, Tx<0>, SimTx<1001:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1001:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<305>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<80ms>, RunTx-0<22ms>, Waiting<1649ms>]. module=main
I[2022-12-31|11:57:50.158][33627:207] Height<1002>, Tx<0>, SimTx<1002:0>, BlockSize<489>, BTInterval<1926ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1002:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1780ms>]. module=main
I[2022-12-31|11:57:52.158][33627:207] Height<1003>, Tx<0>, SimTx<1003:0>, BlockSize<489>, BTInterval<2102ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1003:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<22ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<87ms>, Commit-0-0<86ms>, RunTx-0<24ms>, Waiting<1611ms>]. module=main
I[2022-12-31|11:57:54.158][33627:207] Height<1004>, Tx<0>, SimTx<1004:0>, BlockSize<489>, BTInterval<2014ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1004:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<65ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1601ms>]. module=main
I[2022-12-31|11:57:56.158][33627:207] Height<1005>, Tx<0>, SimTx<1005:0>, BlockSize<489>, BTInterval<1861ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1005:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<41ms>, RunTx-0<22ms>, Waiting<1805ms>]. module=main
I[2022-12-31|11:57:58.158][33627:207] Height<1006>, Tx<0>, SimTx<1006:0>, BlockSize<487>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1006:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<244>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<87ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1637ms>]. module=main
I[2022-12-31|11:58:00.158][33627:207] Height<1007>, Tx<0>, SimTx<1007:0>, BlockSize<489>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1007:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<104ms>, Precommit-0<86ms>, Commit-0-0<66ms>, RunTx-0<45ms>, Waiting<1606ms>]. module=main
I[2022-12-31|11:58:02.158][33627:207] Height<1008>, Tx<0>, SimTx<1008:0>, BlockSize<489>, BTInterval<1891ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1008:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<346>, rdb<0>, rdbTs<0ms>, savenode<102>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<47ms>, RunTx-0<22ms>, Waiting<1799ms>]. module=main
I[2022-12-31|11:58:04.158][33627:207] Height<1009>, Tx<0>, SimTx<1009:0>, BlockSize<487>, BTInterval<2086ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1009:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<244>, rdb<2>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<86ms>, Commit-0-0<84ms>, RunTx-0<44ms>, Waiting<1611ms>]. module=main
I[2022-12-31|11:58:06.159][33627:207] Height<1010>, Tx<0>, SimTx<1010:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1010:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<238>, rdb<2>, rdbTs<0ms>, savenode<89>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<65ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1613ms>]. module=main
I[2022-12-31|11:58:08.159][33627:207] Height<1011>, Tx<0>, SimTx<1011:0>, BlockSize<489>, BTInterval<1876ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1011:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<309>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1800ms>]. module=main
I[2022-12-31|11:58:10.159][33627:207] Height<1012>, Tx<0>, SimTx<1012:0>, BlockSize<489>, BTInterval<2115ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1012:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<59ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<57ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<81ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<102ms>, Commit-0-0<63ms>, RunTx-0<59ms>, Waiting<1571ms>]. module=main
I[2022-12-31|11:58:12.159][33627:207] Height<1013>, Tx<0>, SimTx<1013:0>, BlockSize<489>, BTInterval<1968ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1013:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<240>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<64ms>, Commit-0-0<80ms>, RunTx-0<23ms>, Waiting<1658ms>]. module=main
I[2022-12-31|11:58:14.159][33627:207] Height<1014>, Tx<0>, SimTx<1014:0>, BlockSize<489>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1014:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<126ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<60ms>, Commit-0-0<87ms>, RunTx-0<22ms>, Waiting<1610ms>]. module=main
I[2022-12-31|11:58:16.159][33627:207] Height<1015>, Tx<0>, SimTx<1015:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1015:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<245>, rdb<6>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<82ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<104ms>, Precommit-0<49ms>, Commit-0-0<47ms>, RunTx-0<22ms>, Waiting<1663ms>]. module=main
I[2022-12-31|11:58:18.162][33627:207] Height<1016>, Tx<0>, SimTx<1016:0>, BlockSize<489>, BTInterval<1864ms>, LastBlockTime<2002ms>, GasUsed<0>, SimGasUsed<1016:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2002ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<43ms>, Commit-0-0<69ms>, RunTx-0<22ms>, Waiting<1778ms>]. module=main
I[2022-12-31|11:58:20.162][33627:207] Height<1017>, Tx<0>, SimTx<1017:0>, BlockSize<489>, BTInterval<2114ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1017:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<69ms>, Commit-0-0<85ms>, RunTx-0<22ms>, Waiting<1622ms>]. module=main
I[2022-12-31|11:58:22.162][33627:207] Height<1018>, Tx<0>, SimTx<1018:0>, BlockSize<489>, BTInterval<1889ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1018:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1802ms>]. module=main
I[2022-12-31|11:58:24.162][33627:207] Height<1019>, Tx<0>, SimTx<1019:0>, BlockSize<489>, BTInterval<2081ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1019:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<6>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<85ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1642ms>]. module=main
I[2022-12-31|11:58:26.162][33627:207] Height<1020>, Tx<0>, SimTx<1020:0>, BlockSize<489>, BTInterval<2030ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1020:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<310>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1649ms>]. module=main
I[2022-12-31|11:58:28.162][33627:207] Height<1021>, Tx<0>, SimTx<1021:0>, BlockSize<489>, BTInterval<1908ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1021:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<243>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<64ms>, RunTx-0<26ms>, Waiting<1757ms>]. module=main
I[2022-12-31|11:58:30.162][33627:207] Height<1022>, Tx<0>, SimTx<1022:0>, BlockSize<489>, BTInterval<2122ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1022:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<96ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<96ms>, Commit-0-0<86ms>, RunTx-0<39ms>, Waiting<1550ms>]. module=main
I[2022-12-31|11:58:32.162][33627:207] Height<1023>, Tx<0>, SimTx<1023:0>, BlockSize<489>, BTInterval<1917ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1023:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<308>, rdb<0>, rdbTs<0ms>, savenode<90>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<41ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<84ms>, Commit-0-0<78ms>, RunTx-0<43ms>, Waiting<1664ms>]. module=main
I[2022-12-31|11:58:34.162][33627:207] Height<1024>, Tx<0>, SimTx<1024:0>, BlockSize<489>, BTInterval<1981ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1024:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<247>, rdb<0>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1761ms>]. module=main
I[2022-12-31|11:58:36.163][33627:207] Height<1025>, Tx<0>, SimTx<1025:0>, BlockSize<489>, BTInterval<2095ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1025:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<105ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1622ms>]. module=main
I[2022-12-31|11:58:38.163][33627:207] Height<1026>, Tx<0>, SimTx<1026:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1026:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<44ms>>, Iavl[getnode<310>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<45ms>, Waiting<1681ms>]. module=main
I[2022-12-31|11:58:40.163][33627:207] Height<1027>, Tx<0>, SimTx<1027:0>, BlockSize<489>, BTInterval<2008ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1027:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<27ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<48ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1737ms>]. module=main
I[2022-12-31|11:58:42.163][33627:207] Height<1028>, Tx<0>, SimTx<1028:0>, BlockSize<489>, BTInterval<1996ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1028:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1696ms>]. module=main
I[2022-12-31|11:58:44.163][33627:207] Height<1029>, Tx<0>, SimTx<1029:0>, BlockSize<489>, BTInterval<2052ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1029:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<326>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<46ms>, Commit-0-0<87ms>, RunTx-0<24ms>, Waiting<1640ms>]. module=main
I[2022-12-31|11:58:46.163][33627:207] Height<1030>, Tx<0>, SimTx<1030:0>, BlockSize<489>, BTInterval<1895ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1030:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<256>, rdb<2>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<26ms>, Waiting<1790ms>]. module=main
I[2022-12-31|11:58:48.164][33627:207] Height<1031>, Tx<0>, SimTx<1031:0>, BlockSize<489>, BTInterval<2075ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1031:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1676ms>]. module=main
I[2022-12-31|11:58:50.164][33627:207] Height<1032>, Tx<0>, SimTx<1032:0>, BlockSize<489>, BTInterval<2000ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1032:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<58ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<57ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<88ms>, Commit-0-0<100ms>, RunTx-0<59ms>, Waiting<1598ms>]. module=main
I[2022-12-31|11:58:52.164][33627:207] Height<1033>, Tx<0>, SimTx<1033:0>, BlockSize<489>, BTInterval<1917ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1033:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<313>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<42ms>, Commit-0-0<44ms>, RunTx-0<22ms>, Waiting<1799ms>]. module=main
I[2022-12-31|11:58:54.164][33627:207] Height<1034>, Tx<0>, SimTx<1034:0>, BlockSize<489>, BTInterval<2111ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1034:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<249>, rdb<2>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<109ms>, Precommit-0<87ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1601ms>]. module=main
I[2022-12-31|11:58:56.164][33627:207] Height<1035>, Tx<0>, SimTx<1035:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1035:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<84ms>, Commit-0-0<64ms>, RunTx-0<27ms>, Waiting<1652ms>]. module=main
I[2022-12-31|11:58:58.164][33627:207] Height<1036>, Tx<0>, SimTx<1036:0>, BlockSize<489>, BTInterval<1962ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1036:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<326>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<51ms>, Precommit-0<45ms>, Commit-0-0<49ms>, RunTx-0<22ms>, Waiting<1728ms>]. module=main
I[2022-12-31|11:59:00.164][33627:207] Height<1037>, Tx<0>, SimTx<1037:0>, BlockSize<489>, BTInterval<1995ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1037:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<35ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<22ms>, Commit-0-0<65ms>, RunTx-0<37ms>, Waiting<1703ms>]. module=main
I[2022-12-31|11:59:02.164][33627:207] Height<1038>, Tx<0>, SimTx<1038:0>, BlockSize<489>, BTInterval<2021ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1038:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<48ms>, abci<0ms>, persist<48ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<46ms>>, Iavl[getnode<254>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<66ms>, Commit-0-0<65ms>, RunTx-0<48ms>, Waiting<1647ms>]. module=main
I[2022-12-31|11:59:04.164][33627:207] Height<1039>, Tx<0>, SimTx<1039:0>, BlockSize<489>, BTInterval<1916ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1039:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<316>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1803ms>]. module=main
I[2022-12-31|11:59:06.165][33627:207] Height<1040>, Tx<0>, SimTx<1040:0>, BlockSize<489>, BTInterval<2093ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1040:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<81ms>, Commit-0-0<65ms>, RunTx-0<43ms>, Waiting<1628ms>]. module=main
I[2022-12-31|11:59:08.165][33627:207] Height<1041>, Tx<0>, SimTx<1041:0>, BlockSize<489>, BTInterval<1952ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1041:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<250>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1693ms>]. module=main
I[2022-12-31|11:59:10.165][33627:207] Height<1042>, Tx<0>, SimTx<1042:0>, BlockSize<489>, BTInterval<2012ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1042:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<45ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1742ms>]. module=main
I[2022-12-31|11:59:12.165][33627:207] Height<1043>, Tx<0>, SimTx<1043:0>, BlockSize<489>, BTInterval<2025ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1043:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<47ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<45ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<88ms>, Precommit-0<99ms>, Commit-0-0<64ms>, RunTx-0<48ms>, Waiting<1633ms>]. module=main
I[2022-12-31|11:59:14.165][33627:207] Height<1044>, Tx<0>, SimTx<1044:0>, BlockSize<489>, BTInterval<2011ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1044:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1665ms>]. module=main
I[2022-12-31|11:59:16.165][33627:207] Height<1045>, Tx<0>, SimTx<1045:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1045:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1689ms>]. module=main
I[2022-12-31|11:59:18.165][33627:207] Height<1046>, Tx<0>, SimTx<1046:0>, BlockSize<489>, BTInterval<2037ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1046:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<61ms>, abci<0ms>, persist<61ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<59ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<58ms>, recvProposal<60ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<43ms>, Commit-0-0<70ms>, RunTx-0<61ms>, Waiting<1626ms>]. module=main
I[2022-12-31|11:59:20.165][33627:207] Height<1047>, Tx<0>, SimTx<1047:0>, BlockSize<489>, BTInterval<1889ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1047:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<59ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1788ms>]. module=main
I[2022-12-31|11:59:22.165][33627:207] Height<1048>, Tx<0>, SimTx<1048:0>, BlockSize<489>, BTInterval<2087ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1048:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<101ms>, Commit-0-0<99ms>, RunTx-0<23ms>, Waiting<1617ms>]. module=main
I[2022-12-31|11:59:24.166][33627:207] Height<1049>, Tx<0>, SimTx<1049:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1049:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<47ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<26ms>, Waiting<1725ms>]. module=main
I[2022-12-31|11:59:26.166][33627:207] Height<1050>, Tx<0>, SimTx<1050:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1050:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<37ms>, abci<0ms>, persist<37ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<250>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<65ms>, Commit-0-0<85ms>, RunTx-0<38ms>, Waiting<1697ms>]. module=main
I[2022-12-31|11:59:28.166][33627:207] Height<1051>, Tx<0>, SimTx<1051:0>, BlockSize<489>, BTInterval<2053ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1051:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<311>, rdb<4>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<65ms>, Commit-0-0<80ms>, RunTx-0<23ms>, Waiting<1663ms>]. module=main
I[2022-12-31|11:59:30.166][33627:207] Height<1052>, Tx<0>, SimTx<1052:0>, BlockSize<489>, BTInterval<1990ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1052:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1978ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1734ms>]. module=main
I[2022-12-31|11:59:32.166][33627:207] Height<1053>, Tx<0>, SimTx<1053:0>, BlockSize<489>, BTInterval<1931ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1053:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<250>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1760ms>]. module=main
I[2022-12-31|11:59:34.166][33627:207] Height<1054>, Tx<0>, SimTx<1054:0>, BlockSize<489>, BTInterval<2086ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1054:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<2ms>, abci<0ms>, persist<2ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<1ms>>, Iavl[getnode<257>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<80ms>, Commit-0-0<65ms>, RunTx-0<3ms>, Waiting<1690ms>]. module=main
I[2022-12-31|11:59:36.166][33627:207] Height<1055>, Tx<0>, SimTx<1055:0>, BlockSize<489>, BTInterval<2076ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1055:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<25ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<118ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<102ms>, Commit-0-0<86ms>, RunTx-0<27ms>, Waiting<1547ms>]. module=main
I[2022-12-31|11:59:38.166][33627:207] Height<1056>, Tx<0>, SimTx<1056:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1056:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<46ms>, abci<0ms>, persist<46ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<44ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<54ms>, Precommit-0<74ms>, Commit-0-0<51ms>, RunTx-0<47ms>, Waiting<1628ms>]. module=main
I[2022-12-31|11:59:40.166][33627:207] Height<1057>, Tx<0>, SimTx<1057:0>, BlockSize<489>, BTInterval<1942ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1057:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<56ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<101ms>, Commit-0-0<87ms>, RunTx-0<23ms>, Waiting<1644ms>]. module=main
I[2022-12-31|11:59:42.166][33627:207] Height<1058>, Tx<0>, SimTx<1058:0>, BlockSize<489>, BTInterval<2033ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1058:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<22ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<77ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<48ms>, Precommit-0<90ms>, Commit-0-0<51ms>, RunTx-0<24ms>, Waiting<1655ms>]. module=main
I[2022-12-31|11:59:44.166][33627:207] Height<1059>, Tx<0>, SimTx<1059:0>, BlockSize<489>, BTInterval<2030ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1059:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<3ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<75ms>, Precommit-0<74ms>, Commit-0-0<86ms>, RunTx-0<4ms>, Waiting<1626ms>]. module=main
I[2022-12-31|11:59:46.167][33627:207] Height<1060>, Tx<0>, SimTx<1060:0>, BlockSize<489>, BTInterval<2006ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1060:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<2ms>, abci<0ms>, persist<2ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<97ms>, recvProposal<30ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<52ms>, Commit-0-0<48ms>, RunTx-0<2ms>, Waiting<1685ms>]. module=main
I[2022-12-31|11:59:48.167][33627:207] Height<1061>, Tx<0>, SimTx<1061:0>, BlockSize<489>, BTInterval<1954ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1061:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<316>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<63ms>, RunTx-0<44ms>, Waiting<1678ms>]. module=main
I[2022-12-31|11:59:50.167][33627:207] Height<1062>, Tx<0>, SimTx<1062:0>, BlockSize<489>, BTInterval<1918ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1062:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<266>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1801ms>]. module=main
I[2022-12-31|11:59:52.167][33627:207] Height<1063>, Tx<0>, SimTx<1063:0>, BlockSize<489>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1063:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<43ms>, Commit-0-0<89ms>, RunTx-0<22ms>, Waiting<1691ms>]. module=main
I[2022-12-31|11:59:54.167][33627:207] Height<1064>, Tx<0>, SimTx<1064:0>, BlockSize<489>, BTInterval<1934ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1064:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<317>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<23ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1802ms>]. module=main
I[2022-12-31|11:59:56.167][33627:207] Height<1065>, Tx<0>, SimTx<1065:0>, BlockSize<489>, BTInterval<2096ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1065:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<82ms>, Commit-0-0<84ms>, RunTx-0<23ms>, Waiting<1626ms>]. module=main
I[2022-12-31|11:59:58.167][33627:207] Height<1066>, Tx<0>, SimTx<1066:0>, BlockSize<489>, BTInterval<1945ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1066:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1761ms>]. module=main
I[2022-12-31|12:00:00.167][33627:207] Height<1067>, Tx<0>, SimTx<1067:0>, BlockSize<489>, BTInterval<1999ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1067:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<87ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1674ms>]. module=main
I[2022-12-31|12:00:02.167][33627:207] Height<1068>, Tx<0>, SimTx<1068:0>, BlockSize<489>, BTInterval<2077ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1068:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<64ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1641ms>]. module=main
I[2022-12-31|12:00:04.167][33627:207] Height<1069>, Tx<0>, SimTx<1069:0>, BlockSize<489>, BTInterval<1912ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1069:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<255>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1770ms>]. module=main
I[2022-12-31|12:00:06.168][33627:207] Height<1070>, Tx<0>, SimTx<1070:0>, BlockSize<489>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1070:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<40ms>>, Iavl[getnode<323>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<40ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<84ms>, Commit-0-0<65ms>, RunTx-0<42ms>, Waiting<1637ms>]. module=main
I[2022-12-31|12:00:08.168][33627:207] Height<1071>, Tx<0>, SimTx<1071:0>, BlockSize<489>, BTInterval<1968ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1071:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<64ms>, Commit-0-0<64ms>, RunTx-0<20ms>, Waiting<1690ms>]. module=main
I[2022-12-31|12:00:10.168][33627:207] Height<1072>, Tx<0>, SimTx<1072:0>, BlockSize<489>, BTInterval<1929ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1072:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1801ms>]. module=main
I[2022-12-31|12:00:12.168][33627:207] Height<1073>, Tx<0>, SimTx<1073:0>, BlockSize<489>, BTInterval<2108ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1073:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<326>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<63ms>, Commit-0-0<83ms>, RunTx-0<27ms>, Waiting<1627ms>]. module=main
I[2022-12-31|12:00:14.168][33627:207] Height<1074>, Tx<0>, SimTx<1074:0>, BlockSize<489>, BTInterval<1965ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1074:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1688ms>]. module=main
I[2022-12-31|12:00:16.168][33627:207] Height<1075>, Tx<0>, SimTx<1075:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1075:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<99ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1691ms>]. module=main
I[2022-12-31|12:00:18.168][33627:207] Height<1076>, Tx<0>, SimTx<1076:0>, BlockSize<489>, BTInterval<1941ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1076:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<43ms>, Waiting<1727ms>]. module=main
I[2022-12-31|12:00:20.168][33627:207] Height<1077>, Tx<0>, SimTx<1077:0>, BlockSize<489>, BTInterval<2004ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1077:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<91ms>, Commit-0-0<62ms>, RunTx-0<44ms>, Waiting<1663ms>]. module=main
I[2022-12-31|12:00:22.168][33627:207] Height<1078>, Tx<0>, SimTx<1078:0>, BlockSize<489>, BTInterval<1987ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1078:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<259>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<45ms>, Commit-0-0<41ms>, RunTx-0<23ms>, Waiting<1755ms>]. module=main
I[2022-12-31|12:00:24.168][33627:207] Height<1079>, Tx<0>, SimTx<1079:0>, BlockSize<489>, BTInterval<2030ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1079:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<89ms>, RunTx-0<42ms>, Waiting<1661ms>]. module=main
I[2022-12-31|12:00:26.169][33627:207] Height<1080>, Tx<0>, SimTx<1080:0>, BlockSize<489>, BTInterval<1947ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1080:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<269>, rdb<2>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<105ms>, RunTx-0<22ms>, Waiting<1718ms>]. module=main
I[2022-12-31|12:00:28.168][33627:207] Height<1081>, Tx<0>, SimTx<1081:0>, BlockSize<489>, BTInterval<1985ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1081:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1797ms>]. module=main
I[2022-12-31|12:00:30.168][33627:207] Height<1082>, Tx<0>, SimTx<1082:0>, BlockSize<489>, BTInterval<2032ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1082:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<63ms>, Commit-0-0<85ms>, RunTx-0<43ms>, Waiting<1678ms>]. module=main
I[2022-12-31|12:00:32.167][33627:207] Height<1083>, Tx<0>, SimTx<1083:0>, BlockSize<489>, BTInterval<2094ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1083:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<117ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1649ms>]. module=main
I[2022-12-31|12:00:34.167][33627:207] Height<1084>, Tx<0>, SimTx<1084:0>, BlockSize<489>, BTInterval<1864ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1084:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<265>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<37ms>, Commit-0-0<48ms>, RunTx-0<22ms>, Waiting<1783ms>]. module=main
I[2022-12-31|12:00:36.167][33627:207] Height<1085>, Tx<0>, SimTx<1085:0>, BlockSize<489>, BTInterval<2079ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1085:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<47ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<45ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<65ms>, Commit-0-0<84ms>, RunTx-0<47ms>, Waiting<1634ms>]. module=main
I[2022-12-31|12:00:38.167][33627:207] Height<1086>, Tx<0>, SimTx<1086:0>, BlockSize<489>, BTInterval<2092ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1086:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<59ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<321>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<110ms>, recvProposal<64ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<82ms>, Commit-0-0<102ms>, RunTx-0<59ms>, Waiting<1495ms>]. module=main
I[2022-12-31|12:00:40.166][33627:207] Height<1087>, Tx<0>, SimTx<1087:0>, BlockSize<489>, BTInterval<1884ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1087:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<43ms>, Commit-0-0<58ms>, RunTx-0<21ms>, Waiting<1730ms>]. module=main
I[2022-12-31|12:00:42.166][33627:207] Height<1088>, Tx<0>, SimTx<1088:0>, BlockSize<489>, BTInterval<2001ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1088:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<270>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<50ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<74ms>, Precommit-0<66ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1700ms>]. module=main
I[2022-12-31|12:00:44.166][33627:207] Height<1089>, Tx<0>, SimTx<1089:0>, BlockSize<489>, BTInterval<2027ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1089:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<67ms>, RunTx-0<23ms>, Waiting<1670ms>]. module=main
I[2022-12-31|12:00:46.166][33627:207] Height<1090>, Tx<0>, SimTx<1090:0>, BlockSize<489>, BTInterval<2015ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1090:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<43ms>, RunTx-0<21ms>, Waiting<1702ms>]. module=main
I[2022-12-31|12:00:48.166][33627:207] Height<1091>, Tx<0>, SimTx<1091:0>, BlockSize<489>, BTInterval<1980ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1091:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<28ms>, abci<0ms>, persist<28ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<27ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<63ms>, Commit-0-0<105ms>, RunTx-0<28ms>, Waiting<1651ms>]. module=main
I[2022-12-31|12:00:50.166][33627:207] Height<1092>, Tx<0>, SimTx<1092:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1092:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1784ms>]. module=main
I[2022-12-31|12:00:52.166][33627:207] Height<1093>, Tx<0>, SimTx<1093:0>, BlockSize<489>, BTInterval<2078ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1093:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<43ms>, Commit-0-0<78ms>, RunTx-0<22ms>, Waiting<1669ms>]. module=main
I[2022-12-31|12:00:54.166][33627:207] Height<1094>, Tx<0>, SimTx<1094:0>, BlockSize<489>, BTInterval<1975ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1094:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<42ms>, Commit-0-0<84ms>, RunTx-0<21ms>, Waiting<1688ms>]. module=main
I[2022-12-31|12:00:56.166][33627:207] Height<1095>, Tx<0>, SimTx<1095:0>, BlockSize<489>, BTInterval<1925ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1095:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1805ms>]. module=main
I[2022-12-31|12:00:58.166][33627:207] Height<1096>, Tx<0>, SimTx<1096:0>, BlockSize<489>, BTInterval<2090ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1096:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1673ms>]. module=main
I[2022-12-31|12:01:00.166][33627:207] Height<1097>, Tx<0>, SimTx<1097:0>, BlockSize<489>, BTInterval<1985ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1097:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<86ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1684ms>]. module=main
I[2022-12-31|12:01:02.166][33627:207] Height<1098>, Tx<0>, SimTx<1098:0>, BlockSize<489>, BTInterval<1955ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1098:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<332>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<52ms>, Precommit-0<45ms>, Commit-0-0<59ms>, RunTx-0<24ms>, Waiting<1752ms>]. module=main
I[2022-12-31|12:01:04.166][33627:207] Height<1099>, Tx<0>, SimTx<1099:0>, BlockSize<489>, BTInterval<2066ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1099:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<69ms>, Commit-0-0<87ms>, RunTx-0<42ms>, Waiting<1616ms>]. module=main
I[2022-12-31|12:01:06.166][33627:207] Height<1100>, Tx<0>, SimTx<1100:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1100:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<262>, rdb<10>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1768ms>]. module=main
I[2022-12-31|12:01:08.166][33627:207] Height<1101>, Tx<0>, SimTx<1101:0>, BlockSize<489>, BTInterval<2010ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1101:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<109ms>, Commit-0-0<66ms>, RunTx-0<44ms>, Waiting<1670ms>]. module=main
I[2022-12-31|12:01:10.166][33627:207] Height<1102>, Tx<0>, SimTx<1102:0>, BlockSize<489>, BTInterval<2083ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1102:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<104ms>, Precommit-0<81ms>, Commit-0-0<84ms>, RunTx-0<24ms>, Waiting<1594ms>]. module=main
I[2022-12-31|12:01:12.166][33627:207] Height<1103>, Tx<0>, SimTx<1103:0>, BlockSize<489>, BTInterval<1897ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1103:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<46ms>, Precommit-0<82ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1739ms>]. module=main
I[2022-12-31|12:01:14.166][33627:207] Height<1104>, Tx<0>, SimTx<1104:0>, BlockSize<489>, BTInterval<2122ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1104:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<95ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<90ms>, Precommit-0<66ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1590ms>]. module=main
I[2022-12-31|12:01:16.167][33627:207] Height<1105>, Tx<0>, SimTx<1105:0>, BlockSize<489>, BTInterval<1986ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1105:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<82ms>, Commit-0-0<84ms>, RunTx-0<21ms>, Waiting<1589ms>]. module=main
I[2022-12-31|12:01:18.167][33627:207] Height<1106>, Tx<0>, SimTx<1106:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1106:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<46ms>, Commit-0-0<102ms>, RunTx-0<22ms>, Waiting<1662ms>]. module=main
I[2022-12-31|12:01:20.167][33627:207] Height<1107>, Tx<0>, SimTx<1107:0>, BlockSize<489>, BTInterval<1946ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1107:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<317>, rdb<2>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1776ms>]. module=main
I[2022-12-31|12:01:22.167][33627:207] Height<1108>, Tx<0>, SimTx<1108:0>, BlockSize<489>, BTInterval<2074ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1108:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<64ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1660ms>]. module=main
I[2022-12-31|12:01:24.167][33627:207] Height<1109>, Tx<0>, SimTx<1109:0>, BlockSize<489>, BTInterval<2023ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1109:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<63ms>, Commit-0-0<47ms>, RunTx-0<39ms>, Waiting<1658ms>]. module=main
I[2022-12-31|12:01:26.167][33627:207] Height<1110>, Tx<0>, SimTx<1110:0>, BlockSize<489>, BTInterval<1918ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1110:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<311>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<85ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1699ms>]. module=main
I[2022-12-31|12:01:28.167][33627:207] Height<1111>, Tx<0>, SimTx<1111:0>, BlockSize<489>, BTInterval<2059ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1111:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<114ms>, Commit-0-0<66ms>, RunTx-0<23ms>, Waiting<1627ms>]. module=main
I[2022-12-31|12:01:30.167][33627:207] Height<1112>, Tx<0>, SimTx<1112:0>, BlockSize<489>, BTInterval<1939ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1112:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<266>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<60ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1763ms>]. module=main
I[2022-12-31|12:01:32.167][33627:207] Height<1113>, Tx<0>, SimTx<1113:0>, BlockSize<489>, BTInterval<2061ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1113:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<95ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<48ms>, Precommit-0<71ms>, Commit-0-0<92ms>, RunTx-0<23ms>, Waiting<1623ms>]. module=main
I[2022-12-31|12:01:34.167][33627:207] Height<1114>, Tx<0>, SimTx<1114:0>, BlockSize<489>, BTInterval<2013ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1114:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<46ms>, abci<0ms>, persist<46ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<45ms>>, Iavl[getnode<327>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<78ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<74ms>, Precommit-0<95ms>, Commit-0-0<49ms>, RunTx-0<46ms>, Waiting<1608ms>]. module=main
I[2022-12-31|12:01:36.167][33627:207] Height<1115>, Tx<0>, SimTx<1115:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1115:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<36ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<90ms>, recvProposal<46ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<87ms>, Precommit-0<83ms>, Commit-0-0<83ms>, RunTx-0<38ms>, Waiting<1555ms>]. module=main
I[2022-12-31|12:01:38.168][33627:207] Height<1116>, Tx<0>, SimTx<1116:0>, BlockSize<489>, BTInterval<1991ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1116:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<93ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<93ms>, Precommit-0<76ms>, Commit-0-0<59ms>, RunTx-0<1ms>, Waiting<1638ms>]. module=main
I[2022-12-31|12:01:40.168][33627:207] Height<1117>, Tx<0>, SimTx<1117:0>, BlockSize<489>, BTInterval<1959ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1117:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<79ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<81ms>, Commit-0-0<94ms>, RunTx-0<4ms>, Waiting<1631ms>]. module=main
I[2022-12-31|12:01:42.168][33627:207] Height<1118>, Tx<0>, SimTx<1118:0>, BlockSize<489>, BTInterval<1923ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1118:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1778ms>]. module=main
I[2022-12-31|12:01:44.168][33627:207] Height<1119>, Tx<0>, SimTx<1119:0>, BlockSize<489>, BTInterval<2100ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1119:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<87ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1635ms>]. module=main
I[2022-12-31|12:01:46.168][33627:207] Height<1120>, Tx<0>, SimTx<1120:0>, BlockSize<489>, BTInterval<1943ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1120:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<4>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1710ms>]. module=main
I[2022-12-31|12:01:48.168][33627:207] Height<1121>, Tx<0>, SimTx<1121:0>, BlockSize<489>, BTInterval<2014ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1121:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<246>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<47ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1693ms>]. module=main
I[2022-12-31|12:01:50.168][33627:207] Height<1122>, Tx<0>, SimTx<1122:0>, BlockSize<489>, BTInterval<1941ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1122:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<258>, rdb<4>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1777ms>]. module=main
I[2022-12-31|12:01:52.168][33627:207] Height<1123>, Tx<0>, SimTx<1123:0>, BlockSize<489>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1123:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<321>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<45ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1685ms>]. module=main
I[2022-12-31|12:01:54.168][33627:207] Height<1124>, Tx<0>, SimTx<1124:0>, BlockSize<489>, BTInterval<2097ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1124:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<141ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<63ms>, Commit-0-0<100ms>, RunTx-0<22ms>, Waiting<1556ms>]. module=main
I[2022-12-31|12:01:56.169][33627:207] Height<1125>, Tx<0>, SimTx<1125:0>, BlockSize<489>, BTInterval<1829ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1125:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<41ms>, RunTx-0<23ms>, Waiting<1784ms>]. module=main
I[2022-12-31|12:01:58.169][33627:207] Height<1126>, Tx<0>, SimTx<1126:0>, BlockSize<489>, BTInterval<2081ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1126:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<331>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<69ms>, Commit-0-0<62ms>, RunTx-0<43ms>, Waiting<1635ms>]. module=main
I[2022-12-31|12:02:00.169][33627:207] Height<1127>, Tx<0>, SimTx<1127:0>, BlockSize<489>, BTInterval<2029ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1127:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<87ms>, Commit-0-0<44ms>, RunTx-0<23ms>, Waiting<1649ms>]. module=main
I[2022-12-31|12:02:02.169][33627:207] Height<1128>, Tx<0>, SimTx<1128:0>, BlockSize<489>, BTInterval<1895ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1128:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1776ms>]. module=main
I[2022-12-31|12:02:04.169][33627:207] Height<1129>, Tx<0>, SimTx<1129:0>, BlockSize<489>, BTInterval<2068ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1129:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<48ms>, abci<0ms>, persist<48ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<46ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<88ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<48ms>, Waiting<1618ms>]. module=main
I[2022-12-31|12:02:06.169][33627:207] Height<1130>, Tx<0>, SimTx<1130:0>, BlockSize<489>, BTInterval<2009ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1130:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<68ms>, Commit-0-0<85ms>, RunTx-0<22ms>, Waiting<1631ms>]. module=main
I[2022-12-31|12:02:08.169][33627:207] Height<1131>, Tx<0>, SimTx<1131:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1131:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<20ms>>, Iavl[getnode<266>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<47ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1760ms>]. module=main
I[2022-12-31|12:02:10.169][33627:207] Height<1132>, Tx<0>, SimTx<1132:0>, BlockSize<489>, BTInterval<2010ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1132:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<332>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<66ms>, Commit-0-0<64ms>, RunTx-0<45ms>, Waiting<1684ms>]. module=main
I[2022-12-31|12:02:12.169][33627:207] Height<1133>, Tx<0>, SimTx<1133:0>, BlockSize<489>, BTInterval<2049ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1133:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<82ms>, Commit-0-0<100ms>, RunTx-0<24ms>, Waiting<1606ms>]. module=main
I[2022-12-31|12:02:14.170][33627:207] Height<1134>, Tx<0>, SimTx<1134:0>, BlockSize<489>, BTInterval<1923ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1134:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<25ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<22ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<25ms>, Waiting<1776ms>]. module=main
I[2022-12-31|12:02:16.170][33627:207] Height<1135>, Tx<0>, SimTx<1135:0>, BlockSize<489>, BTInterval<2041ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1135:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<328>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<91ms>, Commit-0-0<85ms>, RunTx-0<24ms>, Waiting<1646ms>]. module=main
I[2022-12-31|12:02:18.170][33627:207] Height<1136>, Tx<0>, SimTx<1136:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1136:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<80ms>, Commit-0-0<68ms>, RunTx-0<23ms>, Waiting<1634ms>]. module=main
I[2022-12-31|12:02:20.170][33627:207] Height<1137>, Tx<0>, SimTx<1137:0>, BlockSize<489>, BTInterval<1945ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1137:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<92ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<23ms>, Commit-0-0<45ms>, RunTx-0<23ms>, Waiting<1749ms>]. module=main
I[2022-12-31|12:02:22.170][33627:207] Height<1138>, Tx<0>, SimTx<1138:0>, BlockSize<489>, BTInterval<2017ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1138:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<43ms>>, Iavl[getnode<331>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<74ms>, Precommit-0<68ms>, Commit-0-0<70ms>, RunTx-0<45ms>, Waiting<1660ms>]. module=main
I[2022-12-31|12:02:24.170][33627:207] Height<1139>, Tx<0>, SimTx<1139:0>, BlockSize<489>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1139:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<269>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<59ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<89ms>, Precommit-0<66ms>, Commit-0-0<74ms>, RunTx-0<23ms>, Waiting<1640ms>]. module=main
I[2022-12-31|12:02:26.170][33627:207] Height<1140>, Tx<0>, SimTx<1140:0>, BlockSize<489>, BTInterval<1922ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1140:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1773ms>]. module=main
I[2022-12-31|12:02:28.170][33627:207] Height<1141>, Tx<0>, SimTx<1141:0>, BlockSize<489>, BTInterval<2033ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1141:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<85ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1655ms>]. module=main
I[2022-12-31|12:02:30.171][33627:207] Height<1142>, Tx<0>, SimTx<1142:0>, BlockSize<489>, BTInterval<2000ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1142:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<333>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<125ms>, Commit-0-0<69ms>, RunTx-0<44ms>, Waiting<1608ms>]. module=main
I[2022-12-31|12:02:32.171][33627:207] Height<1143>, Tx<0>, SimTx<1143:0>, BlockSize<489>, BTInterval<2048ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1143:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<112ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<48ms>, Precommit-0<64ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1632ms>]. module=main
I[2022-12-31|12:02:34.171][33627:207] Height<1144>, Tx<0>, SimTx<1144:0>, BlockSize<489>, BTInterval<2003ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1144:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1965ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<44ms>, Commit-0-0<84ms>, RunTx-0<22ms>, Waiting<1644ms>]. module=main
I[2022-12-31|12:02:36.171][33627:207] Height<1145>, Tx<0>, SimTx<1145:0>, BlockSize<489>, BTInterval<1943ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1145:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<60ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<60ms>, Precommit-0<48ms>, Commit-0-0<58ms>, RunTx-0<22ms>, Waiting<1723ms>]. module=main
I[2022-12-31|12:02:38.171][33627:207] Height<1146>, Tx<0>, SimTx<1146:0>, BlockSize<489>, BTInterval<2094ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1146:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<31ms>, abci<0ms>, persist<31ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<29ms>>, Iavl[getnode<264>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<76ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<131ms>, Commit-0-0<96ms>, RunTx-0<31ms>, Waiting<1552ms>]. module=main
I[2022-12-31|12:02:40.171][33627:207] Height<1147>, Tx<0>, SimTx<1147:0>, BlockSize<489>, BTInterval<1941ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1147:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<265>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<75ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<73ms>, Precommit-0<53ms>, Commit-0-0<71ms>, RunTx-0<44ms>, Waiting<1655ms>]. module=main
I[2022-12-31|12:02:42.171][33627:207] Height<1148>, Tx<0>, SimTx<1148:0>, BlockSize<489>, BTInterval<1925ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1148:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<328>, rdb<2>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1782ms>]. module=main
I[2022-12-31|12:02:44.172][33627:207] Height<1149>, Tx<0>, SimTx<1149:0>, BlockSize<489>, BTInterval<2115ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1149:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<107ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<64ms>, Commit-0-0<85ms>, RunTx-0<23ms>, Waiting<1603ms>]. module=main
I[2022-12-31|12:02:46.172][33627:207] Height<1150>, Tx<0>, SimTx<1150:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1150:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<257>, rdb<6>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<85ms>, Commit-0-0<83ms>, RunTx-0<23ms>, Waiting<1616ms>]. module=main
I[2022-12-31|12:02:48.172][33627:207] Height<1151>, Tx<0>, SimTx<1151:0>, BlockSize<489>, BTInterval<1998ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1151:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<313>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<99ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<66ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1635ms>]. module=main
I[2022-12-31|12:02:50.172][33627:207] Height<1152>, Tx<0>, SimTx<1152:0>, BlockSize<489>, BTInterval<1902ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1152:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<27ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<24ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<46ms>, Precommit-0<44ms>, Commit-0-0<42ms>, RunTx-0<27ms>, Waiting<1773ms>]. module=main
I[2022-12-31|12:02:52.172][33627:207] Height<1153>, Tx<0>, SimTx<1153:0>, BlockSize<489>, BTInterval<2093ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1153:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<104ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1642ms>]. module=main
I[2022-12-31|12:02:54.172][33627:207] Height<1154>, Tx<0>, SimTx<1154:0>, BlockSize<489>, BTInterval<1988ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1154:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<89ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<50ms>, Commit-0-0<86ms>, RunTx-0<24ms>, Waiting<1646ms>]. module=main
I[2022-12-31|12:02:56.172][33627:207] Height<1155>, Tx<0>, SimTx<1155:0>, BlockSize<489>, BTInterval<1919ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1155:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1778ms>]. module=main
I[2022-12-31|12:02:58.173][33627:207] Height<1156>, Tx<0>, SimTx<1156:0>, BlockSize<489>, BTInterval<2015ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1156:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<46ms>, abci<0ms>, persist<46ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<44ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<103ms>, Commit-0-0<84ms>, RunTx-0<46ms>, Waiting<1636ms>]. module=main
I[2022-12-31|12:03:00.173][33627:207] Height<1157>, Tx<0>, SimTx<1157:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1157:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1773ms>]. module=main
I[2022-12-31|12:03:02.173][33627:207] Height<1158>, Tx<0>, SimTx<1158:0>, BlockSize<489>, BTInterval<2019ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1158:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<264>, rdb<2>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1689ms>]. module=main
I[2022-12-31|12:03:04.173][33627:207] Height<1159>, Tx<0>, SimTx<1159:0>, BlockSize<489>, BTInterval<2043ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1159:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<46ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<43ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<86ms>, Commit-0-0<64ms>, RunTx-0<46ms>, Waiting<1643ms>]. module=main
I[2022-12-31|12:03:06.173][33627:207] Height<1160>, Tx<0>, SimTx<1160:0>, BlockSize<489>, BTInterval<1930ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1160:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1780ms>]. module=main
I[2022-12-31|12:03:08.173][33627:207] Height<1161>, Tx<0>, SimTx<1161:0>, BlockSize<489>, BTInterval<2091ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1161:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<47ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<44ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<124ms>, Commit-0-0<70ms>, RunTx-0<47ms>, Waiting<1578ms>]. module=main
I[2022-12-31|12:03:10.173][33627:207] Height<1162>, Tx<0>, SimTx<1162:0>, BlockSize<489>, BTInterval<1936ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1162:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<65ms>, Commit-0-0<66ms>, RunTx-0<44ms>, Waiting<1685ms>]. module=main
I[2022-12-31|12:03:12.173][33627:207] Height<1163>, Tx<0>, SimTx<1163:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1163:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<23ms>, Waiting<1762ms>]. module=main
I[2022-12-31|12:03:14.174][33627:207] Height<1164>, Tx<0>, SimTx<1164:0>, BlockSize<489>, BTInterval<2019ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1164:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<67ms>, Commit-0-0<66ms>, RunTx-0<44ms>, Waiting<1673ms>]. module=main
I[2022-12-31|12:03:16.174][33627:207] Height<1165>, Tx<0>, SimTx<1165:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1165:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<94ms>, Commit-0-0<67ms>, RunTx-0<44ms>, Waiting<1612ms>]. module=main
I[2022-12-31|12:03:18.174][33627:207] Height<1166>, Tx<0>, SimTx<1166:0>, BlockSize<489>, BTInterval<2014ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1166:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<36ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<94ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<67ms>, Commit-0-0<86ms>, RunTx-0<38ms>, Waiting<1610ms>]. module=main
I[2022-12-31|12:03:20.174][33627:207] Height<1167>, Tx<0>, SimTx<1167:0>, BlockSize<489>, BTInterval<1966ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1167:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<66ms>, Commit-0-0<63ms>, RunTx-0<23ms>, Waiting<1682ms>]. module=main
I[2022-12-31|12:03:22.174][33627:207] Height<1168>, Tx<0>, SimTx<1168:0>, BlockSize<489>, BTInterval<1947ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1168:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1779ms>]. module=main
I[2022-12-31|12:03:24.174][33627:207] Height<1169>, Tx<0>, SimTx<1169:0>, BlockSize<489>, BTInterval<2084ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1169:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<264>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<45ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1672ms>]. module=main
I[2022-12-31|12:03:26.174][33627:207] Height<1170>, Tx<0>, SimTx<1170:0>, BlockSize<489>, BTInterval<1929ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1170:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1765ms>]. module=main
I[2022-12-31|12:03:28.174][33627:207] Height<1171>, Tx<0>, SimTx<1171:0>, BlockSize<489>, BTInterval<2050ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1171:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<6ms>, abci<0ms>, persist<6ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<4ms>>, Iavl[getnode<264>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<98ms>, Precommit-0<48ms>, Commit-0-0<74ms>, RunTx-0<6ms>, Waiting<1695ms>]. module=main
I[2022-12-31|12:03:30.174][33627:207] Height<1172>, Tx<0>, SimTx<1172:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1172:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<5ms>, abci<0ms>, persist<5ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<4ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<52ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<73ms>, Precommit-0<69ms>, Commit-0-0<77ms>, RunTx-0<5ms>, Waiting<1693ms>]. module=main
I[2022-12-31|12:03:32.175][33627:207] Height<1173>, Tx<0>, SimTx<1173:0>, BlockSize<489>, BTInterval<2057ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1173:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<326>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<76ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<60ms>, Commit-0-0<43ms>, RunTx-0<24ms>, Waiting<1676ms>]. module=main
I[2022-12-31|12:03:34.175][33627:207] Height<1174>, Tx<0>, SimTx<1174:0>, BlockSize<489>, BTInterval<1964ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1174:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<77ms>, recvProposal<53ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<22ms>, Commit-0-0<70ms>, RunTx-0<23ms>, Waiting<1685ms>]. module=main
I[2022-12-31|12:03:36.175][33627:207] Height<1175>, Tx<0>, SimTx<1175:0>, BlockSize<489>, BTInterval<2115ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1175:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<61ms>, abci<0ms>, persist<61ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<59ms>>, Iavl[getnode<254>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<136ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<110ms>, Precommit-0<82ms>, Commit-0-0<65ms>, RunTx-0<61ms>, Waiting<1499ms>]. module=main
I[2022-12-31|12:03:38.175][33627:207] Height<1176>, Tx<0>, SimTx<1176:0>, BlockSize<489>, BTInterval<2004ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1176:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<327>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<94ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<152ms>, Precommit-0<109ms>, Commit-0-0<64ms>, RunTx-0<44ms>, Waiting<1485ms>]. module=main
I[2022-12-31|12:03:40.175][33627:207] Height<1177>, Tx<0>, SimTx<1177:0>, BlockSize<489>, BTInterval<1857ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1177:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<122ms>, Commit-0-0<86ms>, RunTx-0<43ms>, Waiting<1615ms>]. module=main
I[2022-12-31|12:03:42.175][33627:207] Height<1178>, Tx<0>, SimTx<1178:0>, BlockSize<489>, BTInterval<1958ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1178:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1998ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<23ms>, Waiting<1777ms>]. module=main
I[2022-12-31|12:03:44.175][33627:207] Height<1179>, Tx<0>, SimTx<1179:0>, BlockSize<489>, BTInterval<2161ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1179:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<42ms>>, Iavl[getnode<325>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<109ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<103ms>, Precommit-0<88ms>, Commit-0-0<104ms>, RunTx-0<44ms>, Waiting<1489ms>]. module=main
I[2022-12-31|12:03:46.175][33627:207] Height<1180>, Tx<0>, SimTx<1180:0>, BlockSize<489>, BTInterval<2027ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1180:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<64ms>, abci<0ms>, persist<64ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<62ms>>, Iavl[getnode<260>, rdb<4>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<119ms>, recvProposal<64ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<78ms>, Precommit-0<144ms>, Commit-0-0<87ms>, RunTx-0<64ms>, Waiting<1441ms>]. module=main
I[2022-12-31|12:03:48.175][33627:207] Height<1181>, Tx<0>, SimTx<1181:0>, BlockSize<489>, BTInterval<1880ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1181:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<43ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<71ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<65ms>, Commit-0-0<66ms>, RunTx-0<45ms>, Waiting<1641ms>]. module=main
I[2022-12-31|12:03:50.175][33627:207] Height<1182>, Tx<0>, SimTx<1182:0>, BlockSize<489>, BTInterval<2008ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1182:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<334>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1991ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<68ms>, Precommit-0<82ms>, Commit-0-0<64ms>, RunTx-0<23ms>, Waiting<1640ms>]. module=main
I[2022-12-31|12:03:52.176][33627:207] Height<1183>, Tx<0>, SimTx<1183:0>, BlockSize<489>, BTInterval<1976ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1183:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<30ms>, abci<0ms>, persist<30ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<28ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1997ms>, enterPropose-0-y-f515c7<97ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<44ms>, RunTx-0<30ms>, Waiting<1715ms>]. module=main
I[2022-12-31|12:03:54.176][33627:207] Height<1184>, Tx<0>, SimTx<1184:0>, BlockSize<489>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1184:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<61ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<59ms>>, Iavl[getnode<252>, rdb<2>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<59ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<117ms>, Precommit-0<81ms>, Commit-0-0<64ms>, RunTx-0<61ms>, Waiting<1586ms>]. module=main
I[2022-12-31|12:03:56.176][33627:207] Height<1185>, Tx<0>, SimTx<1185:0>, BlockSize<489>, BTInterval<1906ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1185:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<58ms>>, Iavl[getnode<320>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<90ms>, Commit-0-0<102ms>, RunTx-0<60ms>, Waiting<1634ms>]. module=main
I[2022-12-31|12:03:58.176][33627:207] Height<1186>, Tx<0>, SimTx<1186:0>, BlockSize<489>, BTInterval<2062ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1186:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<39ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<37ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<103ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<33ms>, Precommit-0<46ms>, Commit-0-0<89ms>, RunTx-0<39ms>, Waiting<1651ms>]. module=main
I[2022-12-31|12:04:00.176][33627:207] Height<1187>, Tx<0>, SimTx<1187:0>, BlockSize<489>, BTInterval<2036ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1187:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<39ms>, abci<0ms>, persist<39ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<92ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<44ms>, Commit-0-0<47ms>, RunTx-0<39ms>, Waiting<1658ms>]. module=main
I[2022-12-31|12:04:02.176][33627:207] Height<1188>, Tx<0>, SimTx<1188:0>, BlockSize<489>, BTInterval<1912ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1188:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<329>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<62ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1765ms>]. module=main
I[2022-12-31|12:04:04.176][33627:207] Height<1189>, Tx<0>, SimTx<1189:0>, BlockSize<489>, BTInterval<2067ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1189:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<64ms>, Commit-0-0<84ms>, RunTx-0<23ms>, Waiting<1638ms>]. module=main
I[2022-12-31|12:04:06.176][33627:207] Height<1190>, Tx<0>, SimTx<1190:0>, BlockSize<489>, BTInterval<2049ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1190:0>, InvalidTxs<0>, lastRun<3ms>, RunTx<ApplyBlock<25ms>, abci<0ms>, persist<25ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<21ms>>, Iavl[getnode<254>, rdb<4>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1969ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<81ms>, Commit-0-0<43ms>, RunTx-0<26ms>, Waiting<1645ms>]. module=main
I[2022-12-31|12:04:08.176][33627:207] Height<1191>, Tx<0>, SimTx<1191:0>, BlockSize<489>, BTInterval<1890ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1191:0>, InvalidTxs<0>, lastRun<2ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<25ms>>, Iavl[getnode<324>, rdb<6>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<23ms>, Commit-0-0<43ms>, RunTx-0<27ms>, Waiting<1754ms>]. module=main
I[2022-12-31|12:04:10.177][33627:207] Height<1192>, Tx<0>, SimTx<1192:0>, BlockSize<489>, BTInterval<2021ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1192:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<59ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<84ms>, Precommit-0<135ms>, Commit-0-0<63ms>, RunTx-0<60ms>, Waiting<1588ms>]. module=main
I[2022-12-31|12:04:12.177][33627:207] Height<1193>, Tx<0>, SimTx<1193:0>, BlockSize<489>, BTInterval<2045ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1193:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<255>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<74ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<86ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1630ms>]. module=main
I[2022-12-31|12:04:14.177][33627:207] Height<1194>, Tx<0>, SimTx<1194:0>, BlockSize<489>, BTInterval<1974ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1194:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<43ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1696ms>]. module=main
I[2022-12-31|12:04:16.178][33627:207] Height<1195>, Tx<0>, SimTx<1195:0>, BlockSize<489>, BTInterval<1958ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1195:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<36ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<82ms>, Commit-0-0<88ms>, RunTx-0<22ms>, Waiting<1677ms>]. module=main
I[2022-12-31|12:04:18.178][33627:207] Height<1196>, Tx<0>, SimTx<1196:0>, BlockSize<489>, BTInterval<2060ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1196:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<78ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<71ms>, Commit-0-0<64ms>, RunTx-0<24ms>, Waiting<1651ms>]. module=main
I[2022-12-31|12:04:20.178][33627:207] Height<1197>, Tx<0>, SimTx<1197:0>, BlockSize<489>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1197:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1975ms>, enterPropose-0-y-f515c7<93ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<61ms>, Precommit-0<80ms>, Commit-0-0<116ms>, RunTx-0<20ms>, Waiting<1558ms>]. module=main
I[2022-12-31|12:04:22.178][33627:207] Height<1198>, Tx<0>, SimTx<1198:0>, BlockSize<489>, BTInterval<1968ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1198:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<102ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1663ms>]. module=main
I[2022-12-31|12:04:24.178][33627:207] Height<1199>, Tx<0>, SimTx<1199:0>, BlockSize<489>, BTInterval<2064ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1199:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<78ms>, abci<0ms>, persist<77ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<75ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<128ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<134ms>, Precommit-0<67ms>, Commit-0-0<87ms>, RunTx-0<78ms>, Waiting<1475ms>]. module=main
I[2022-12-31|12:04:26.178][33627:207] Height<1200>, Tx<0>, SimTx<1200:0>, BlockSize<489>, BTInterval<1886ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1200:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<7ms>, abci<0ms>, persist<6ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<4ms>>, Iavl[getnode<257>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<73ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<54ms>, Commit-0-0<54ms>, RunTx-0<7ms>, Waiting<1708ms>]. module=main
I[2022-12-31|12:04:28.178][33627:207] Height<1201>, Tx<0>, SimTx<1201:0>, BlockSize<489>, BTInterval<2043ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1201:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<60ms>, abci<0ms>, persist<60ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<58ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1977ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<67ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<101ms>, Commit-0-0<63ms>, RunTx-0<60ms>, Waiting<1551ms>]. module=main
I[2022-12-31|12:04:30.178][33627:207] Height<1202>, Tx<0>, SimTx<1202:0>, BlockSize<489>, BTInterval<1896ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1202:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<11ms>, flushMeta<11ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<64ms>, Commit-0-0<82ms>, RunTx-0<24ms>, Waiting<1713ms>]. module=main
I[2022-12-31|12:04:32.179][33627:207] Height<1203>, Tx<0>, SimTx<1203:0>, BlockSize<489>, BTInterval<2085ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1203:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<264>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<121ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<65ms>, Commit-0-0<66ms>, RunTx-0<23ms>, Waiting<1641ms>]. module=main
I[2022-12-31|12:04:34.179][33627:207] Height<1204>, Tx<0>, SimTx<1204:0>, BlockSize<489>, BTInterval<1991ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1204:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<40ms>, abci<0ms>, persist<39ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<37ms>>, Iavl[getnode<327>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<70ms>, recvProposal<57ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<70ms>, Commit-0-0<65ms>, RunTx-0<40ms>, Waiting<1624ms>]. module=main
I[2022-12-31|12:04:36.179][33627:207] Height<1205>, Tx<0>, SimTx<1205:0>, BlockSize<489>, BTInterval<1925ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1205:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<51ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1768ms>]. module=main
I[2022-12-31|12:04:38.179][33627:207] Height<1206>, Tx<0>, SimTx<1206:0>, BlockSize<489>, BTInterval<2085ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1206:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<102ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<80ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1605ms>]. module=main
I[2022-12-31|12:04:40.179][33627:207] Height<1207>, Tx<0>, SimTx<1207:0>, BlockSize<489>, BTInterval<1980ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1207:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<323>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<93ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<49ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1676ms>]. module=main
I[2022-12-31|12:04:42.179][33627:207] Height<1208>, Tx<0>, SimTx<1208:0>, BlockSize<489>, BTInterval<1889ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1208:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<270>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<23ms>, Precommit-0<55ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1782ms>]. module=main
I[2022-12-31|12:04:44.179][33627:207] Height<1209>, Tx<0>, SimTx<1209:0>, BlockSize<489>, BTInterval<2200ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1209:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<36ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<105ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<123ms>, Precommit-0<118ms>, Commit-0-0<69ms>, RunTx-0<38ms>, Waiting<1514ms>]. module=main
I[2022-12-31|12:04:46.180][33627:207] Height<1210>, Tx<0>, SimTx<1210:0>, BlockSize<489>, BTInterval<1940ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1210:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<311>, rdb<8>, rdbTs<0ms>, savenode<91>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1990ms>, enterPropose-0-y-f515c7<117ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<64ms>, Commit-0-0<94ms>, RunTx-0<22ms>, Waiting<1602ms>]. module=main
I[2022-12-31|12:04:48.180][33627:207] Height<1211>, Tx<0>, SimTx<1211:0>, BlockSize<489>, BTInterval<1966ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1211:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<59ms>, abci<0ms>, persist<59ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<58ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<68ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<76ms>, Precommit-0<44ms>, Commit-0-0<64ms>, RunTx-0<60ms>, Waiting<1647ms>]. module=main
I[2022-12-31|12:04:50.180][33627:207] Height<1212>, Tx<0>, SimTx<1212:0>, BlockSize<489>, BTInterval<1979ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1212:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<22ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<43ms>, Commit-0-0<50ms>, RunTx-0<25ms>, Waiting<1718ms>]. module=main
I[2022-12-31|12:04:52.180][33627:207] Height<1213>, Tx<0>, SimTx<1213:0>, BlockSize<489>, BTInterval<1974ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1213:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<41ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<102ms>, Commit-0-0<65ms>, RunTx-0<43ms>, Waiting<1652ms>]. module=main
I[2022-12-31|12:04:54.180][33627:207] Height<1214>, Tx<0>, SimTx<1214:0>, BlockSize<489>, BTInterval<2053ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1214:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1967ms>, enterPropose-0-y-f515c7<69ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<68ms>, Commit-0-0<62ms>, RunTx-0<23ms>, Waiting<1655ms>]. module=main
I[2022-12-31|12:04:56.180][33627:207] Height<1215>, Tx<0>, SimTx<1215:0>, BlockSize<489>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1215:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<250>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<40ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<66ms>, Commit-0-0<105ms>, RunTx-0<24ms>, Waiting<1592ms>]. module=main
I[2022-12-31|12:04:58.180][33627:207] Height<1216>, Tx<0>, SimTx<1216:0>, BlockSize<489>, BTInterval<1977ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1216:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<30ms>, abci<0ms>, persist<30ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<29ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<71ms>, Precommit-0<50ms>, Commit-0-0<52ms>, RunTx-0<30ms>, Waiting<1672ms>]. module=main
I[2022-12-31|12:05:00.180][33627:207] Height<1217>, Tx<0>, SimTx<1217:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1217:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<40ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<63ms>, RunTx-0<42ms>, Waiting<1740ms>]. module=main
I[2022-12-31|12:05:02.180][33627:207] Height<1218>, Tx<0>, SimTx<1218:0>, BlockSize<489>, BTInterval<2103ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1218:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<107ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<72ms>, Commit-0-0<65ms>, RunTx-0<22ms>, Waiting<1634ms>]. module=main
I[2022-12-31|12:05:04.180][33627:207] Height<1219>, Tx<0>, SimTx<1219:0>, BlockSize<489>, BTInterval<1959ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1219:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<1ms>, abci<0ms>, persist<1ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<0ms>>, Iavl[getnode<319>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<49ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<54ms>, Precommit-0<52ms>, Commit-0-0<43ms>, RunTx-0<2ms>, Waiting<1740ms>]. module=main
I[2022-12-31|12:05:06.181][33627:207] Height<1220>, Tx<0>, SimTx<1220:0>, BlockSize<489>, BTInterval<1952ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1220:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<249>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<45ms>, Commit-0-0<97ms>, RunTx-0<22ms>, Waiting<1712ms>]. module=main
I[2022-12-31|12:05:08.182][33627:207] Height<1221>, Tx<0>, SimTx<1221:0>, BlockSize<489>, BTInterval<1990ms>, LastBlockTime<2001ms>, GasUsed<0>, SimGasUsed<1221:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<45ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<2ms>, flushMeta<42ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2001ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<46ms>, Precommit-0<87ms>, Commit-0-0<109ms>, RunTx-0<46ms>, Waiting<1644ms>]. module=main
I[2022-12-31|12:05:10.182][33627:207] Height<1222>, Tx<0>, SimTx<1222:0>, BlockSize<489>, BTInterval<2024ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1222:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<66ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<43ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1753ms>]. module=main
I[2022-12-31|12:05:12.182][33627:207] Height<1223>, Tx<0>, SimTx<1223:0>, BlockSize<489>, BTInterval<2034ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1223:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<318>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<106ms>, Commit-0-0<63ms>, RunTx-0<43ms>, Waiting<1614ms>]. module=main
I[2022-12-31|12:05:14.182][33627:207] Height<1224>, Tx<0>, SimTx<1224:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1224:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<257>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<45ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<50ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1775ms>]. module=main
I[2022-12-31|12:05:16.182][33627:207] Height<1225>, Tx<0>, SimTx<1225:0>, BlockSize<489>, BTInterval<2028ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1225:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1986ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<43ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<51ms>, RunTx-0<22ms>, Waiting<1736ms>]. module=main
I[2022-12-31|12:05:18.183][33627:207] Height<1226>, Tx<0>, SimTx<1226:0>, BlockSize<489>, BTInterval<2048ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1226:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<88ms>, Precommit-0<87ms>, Commit-0-0<108ms>, RunTx-0<23ms>, Waiting<1608ms>]. module=main
I[2022-12-31|12:05:20.183][33627:207] Height<1227>, Tx<0>, SimTx<1227:0>, BlockSize<489>, BTInterval<1913ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1227:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1784ms>]. module=main
I[2022-12-31|12:05:22.183][33627:207] Height<1228>, Tx<0>, SimTx<1228:0>, BlockSize<489>, BTInterval<2070ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1228:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<43ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1694ms>]. module=main
I[2022-12-31|12:05:24.183][33627:207] Height<1229>, Tx<0>, SimTx<1229:0>, BlockSize<489>, BTInterval<2015ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1229:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<22ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1993ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<19ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<63ms>, Commit-0-0<65ms>, RunTx-0<23ms>, Waiting<1654ms>]. module=main
I[2022-12-31|12:05:26.183][33627:207] Height<1230>, Tx<0>, SimTx<1230:0>, BlockSize<489>, BTInterval<1981ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1230:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<2ms>>, Iavl[getnode<254>, rdb<2>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<91ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<52ms>, Precommit-0<51ms>, Commit-0-0<49ms>, RunTx-0<4ms>, Waiting<1725ms>]. module=main
I[2022-12-31|12:05:28.183][33627:207] Height<1231>, Tx<0>, SimTx<1231:0>, BlockSize<489>, BTInterval<2101ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1231:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<134ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<114ms>, Precommit-0<69ms>, Commit-0-0<69ms>, RunTx-0<24ms>, Waiting<1561ms>]. module=main
I[2022-12-31|12:05:30.183][33627:207] Height<1232>, Tx<0>, SimTx<1232:0>, BlockSize<489>, BTInterval<1890ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1232:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<3ms>>, Iavl[getnode<312>, rdb<0>, rdbTs<0ms>, savenode<92>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<56ms>, recvProposal<25ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<80ms>, Precommit-0<51ms>, Commit-0-0<51ms>, RunTx-0<4ms>, Waiting<1730ms>]. module=main
I[2022-12-31|12:05:32.183][33627:207] Height<1233>, Tx<0>, SimTx<1233:0>, BlockSize<489>, BTInterval<2059ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1233:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<27ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<77ms>, recvProposal<44ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<92ms>, Precommit-0<92ms>, Commit-0-0<108ms>, RunTx-0<27ms>, Waiting<1545ms>]. module=main
I[2022-12-31|12:05:34.183][33627:207] Height<1234>, Tx<0>, SimTx<1234:0>, BlockSize<489>, BTInterval<1960ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1234:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<45ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<74ms>, recvProposal<26ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<73ms>, Precommit-0<69ms>, Commit-0-0<64ms>, RunTx-0<45ms>, Waiting<1635ms>]. module=main
I[2022-12-31|12:05:36.183][33627:207] Height<1235>, Tx<0>, SimTx<1235:0>, BlockSize<489>, BTInterval<1923ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1235:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<24ms>>, Iavl[getnode<318>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<44ms>, Commit-0-0<47ms>, RunTx-0<26ms>, Waiting<1773ms>]. module=main
I[2022-12-31|12:05:38.187][33627:207] Height<1236>, Tx<0>, SimTx<1236:0>, BlockSize<489>, BTInterval<2044ms>, LastBlockTime<2003ms>, GasUsed<0>, SimGasUsed<1236:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<70ms>, abci<0ms>, persist<69ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<68ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2003ms>, enterPropose-0-y-f515c7<44ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<110ms>, Commit-0-0<87ms>, RunTx-0<70ms>, Waiting<1604ms>]. module=main
I[2022-12-31|12:05:40.187][33627:207] Height<1237>, Tx<0>, SimTx<1237:0>, BlockSize<489>, BTInterval<2039ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1237:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<44ms>, abci<0ms>, persist<44ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<43ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<65ms>, Commit-0-0<86ms>, RunTx-0<44ms>, Waiting<1613ms>]. module=main
I[2022-12-31|12:05:42.187][33627:207] Height<1238>, Tx<0>, SimTx<1238:0>, BlockSize<489>, BTInterval<1992ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1238:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<317>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<87ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<45ms>, Precommit-0<42ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1687ms>]. module=main
I[2022-12-31|12:05:44.187][33627:207] Height<1239>, Tx<0>, SimTx<1239:0>, BlockSize<489>, BTInterval<1928ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1239:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<44ms>, Commit-0-0<43ms>, RunTx-0<22ms>, Waiting<1778ms>]. module=main
I[2022-12-31|12:05:46.187][33627:207] Height<1240>, Tx<0>, SimTx<1240:0>, BlockSize<489>, BTInterval<2102ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1240:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<106ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1636ms>]. module=main
I[2022-12-31|12:05:48.187][33627:207] Height<1241>, Tx<0>, SimTx<1241:0>, BlockSize<489>, BTInterval<1975ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1241:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1981ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<43ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1703ms>]. module=main
I[2022-12-31|12:05:50.187][33627:207] Height<1242>, Tx<0>, SimTx<1242:0>, BlockSize<489>, BTInterval<1878ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1242:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1824ms>]. module=main
I[2022-12-31|12:05:52.187][33627:207] Height<1243>, Tx<0>, SimTx<1243:0>, BlockSize<489>, BTInterval<2163ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1243:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1988ms>, enterPropose-0-y-f515c7<88ms>, recvProposal<49ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<81ms>, Precommit-0<63ms>, Commit-0-0<62ms>, RunTx-0<24ms>, Waiting<1618ms>]. module=main
I[2022-12-31|12:05:54.188][33627:207] Height<1244>, Tx<0>, SimTx<1244:0>, BlockSize<489>, BTInterval<1944ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1244:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<328>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<89ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1718ms>]. module=main
I[2022-12-31|12:05:56.188][33627:207] Height<1245>, Tx<0>, SimTx<1245:0>, BlockSize<489>, BTInterval<2056ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1245:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<254>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<85ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1619ms>]. module=main
I[2022-12-31|12:05:58.188][33627:207] Height<1246>, Tx<0>, SimTx<1246:0>, BlockSize<489>, BTInterval<1978ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1246:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<264>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1994ms>, enterPropose-0-y-f515c7<63ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<96ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1642ms>]. module=main
I[2022-12-31|12:06:00.188][33627:207] Height<1247>, Tx<0>, SimTx<1247:0>, BlockSize<489>, BTInterval<1857ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1247:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<322>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1828ms>]. module=main
I[2022-12-31|12:06:02.188][33627:207] Height<1248>, Tx<0>, SimTx<1248:0>, BlockSize<489>, BTInterval<2112ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1248:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<253>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<85ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1651ms>]. module=main
I[2022-12-31|12:06:04.188][33627:207] Height<1249>, Tx<0>, SimTx<1249:0>, BlockSize<489>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1249:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1676ms>]. module=main
I[2022-12-31|12:06:06.188][33627:207] Height<1250>, Tx<0>, SimTx<1250:0>, BlockSize<489>, BTInterval<1931ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1250:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<334>, rdb<4>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<41ms>, RunTx-0<21ms>, Waiting<1785ms>]. module=main
I[2022-12-31|12:06:08.188][33627:207] Height<1251>, Tx<0>, SimTx<1251:0>, BlockSize<489>, BTInterval<2057ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1251:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<251>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<68ms>, Commit-0-0<79ms>, RunTx-0<22ms>, Waiting<1663ms>]. module=main
I[2022-12-31|12:06:10.188][33627:207] Height<1252>, Tx<0>, SimTx<1252:0>, BlockSize<489>, BTInterval<1997ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1252:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<266>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1987ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<67ms>, Commit-0-0<62ms>, RunTx-0<22ms>, Waiting<1684ms>]. module=main
I[2022-12-31|12:06:12.188][33627:207] Height<1253>, Tx<0>, SimTx<1253:0>, BlockSize<489>, BTInterval<1947ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1253:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1781ms>]. module=main
I[2022-12-31|12:06:14.188][33627:207] Height<1254>, Tx<0>, SimTx<1254:0>, BlockSize<489>, BTInterval<2080ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1254:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<321>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<41ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<64ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1661ms>]. module=main
I[2022-12-31|12:06:16.188][33627:207] Height<1255>, Tx<0>, SimTx<1255:0>, BlockSize<489>, BTInterval<1959ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1255:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<42ms>, Precommit-0<42ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1723ms>]. module=main
I[2022-12-31|12:06:18.188][33627:207] Height<1256>, Tx<0>, SimTx<1256:0>, BlockSize<489>, BTInterval<1917ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1256:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<262>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<28ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1820ms>]. module=main
I[2022-12-31|12:06:20.189][33627:207] Height<1257>, Tx<0>, SimTx<1257:0>, BlockSize<489>, BTInterval<2101ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1257:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<24ms>, abci<0ms>, persist<24ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<23ms>>, Iavl[getnode<329>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<46ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<70ms>, Precommit-0<69ms>, Commit-0-0<70ms>, RunTx-0<25ms>, Waiting<1668ms>]. module=main
I[2022-12-31|12:06:22.189][33627:207] Height<1258>, Tx<0>, SimTx<1258:0>, BlockSize<489>, BTInterval<2001ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1258:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1983ms>, enterPropose-0-y-f515c7<85ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<85ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1682ms>]. module=main
I[2022-12-31|12:06:24.189][33627:207] Height<1259>, Tx<0>, SimTx<1259:0>, BlockSize<489>, BTInterval<1900ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1259:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<20ms>, abci<0ms>, persist<20ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<19ms>>, Iavl[getnode<258>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<46ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<20ms>, Waiting<1825ms>]. module=main
I[2022-12-31|12:06:26.189][33627:207] Height<1260>, Tx<0>, SimTx<1260:0>, BlockSize<489>, BTInterval<2104ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1260:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<350>, rdb<0>, rdbTs<0ms>, savenode<104>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1996ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<64ms>, Commit-0-0<62ms>, RunTx-0<42ms>, Waiting<1657ms>]. module=main
I[2022-12-31|12:06:28.189][33627:207] Height<1261>, Tx<0>, SimTx<1261:0>, BlockSize<489>, BTInterval<1892ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1261:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1827ms>]. module=main
I[2022-12-31|12:06:30.189][33627:207] Height<1262>, Tx<0>, SimTx<1262:0>, BlockSize<489>, BTInterval<2108ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1262:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<268>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1995ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<43ms>, Commit-0-0<89ms>, RunTx-0<21ms>, Waiting<1671ms>]. module=main
I[2022-12-31|12:06:32.189][33627:207] Height<1263>, Tx<0>, SimTx<1263:0>, BlockSize<489>, BTInterval<2013ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1263:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<329>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<100ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<65ms>, Precommit-0<62ms>, Commit-0-0<62ms>, RunTx-0<21ms>, Waiting<1665ms>]. module=main
I[2022-12-31|12:06:34.189][33627:207] Height<1264>, Tx<0>, SimTx<1264:0>, BlockSize<489>, BTInterval<1878ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1264:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<252>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1826ms>]. module=main
I[2022-12-31|12:06:36.189][33627:207] Height<1265>, Tx<0>, SimTx<1265:0>, BlockSize<489>, BTInterval<2170ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1265:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<256>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<101ms>, recvProposal<22ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<95ms>, Precommit-0<43ms>, Commit-0-0<67ms>, RunTx-0<21ms>, Waiting<1630ms>]. module=main
I[2022-12-31|12:06:38.189][33627:207] Height<1266>, Tx<0>, SimTx<1266:0>, BlockSize<489>, BTInterval<2031ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1266:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<331>, rdb<4>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1982ms>, enterPropose-0-y-f515c7<121ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<69ms>, Precommit-0<84ms>, Commit-0-0<63ms>, RunTx-0<22ms>, Waiting<1583ms>]. module=main
I[2022-12-31|12:06:40.189][33627:207] Height<1267>, Tx<0>, SimTx<1267:0>, BlockSize<489>, BTInterval<1797ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1267:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<42ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<22ms>, Precommit-0<21ms>, Commit-0-0<52ms>, RunTx-0<22ms>, Waiting<1818ms>]. module=main
I[2022-12-31|12:06:42.189][33627:207] Height<1268>, Tx<0>, SimTx<1268:0>, BlockSize<489>, BTInterval<2184ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1268:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<86ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<86ms>, Precommit-0<85ms>, Commit-0-0<83ms>, RunTx-0<21ms>, Waiting<1575ms>]. module=main
I[2022-12-31|12:06:44.189][33627:207] Height<1269>, Tx<0>, SimTx<1269:0>, BlockSize<489>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1269:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<47ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<46ms>>, Iavl[getnode<324>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<84ms>, recvProposal<71ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<115ms>, Precommit-0<68ms>, Commit-0-0<48ms>, RunTx-0<47ms>, Waiting<1547ms>]. module=main
I[2022-12-31|12:06:46.189][33627:207] Height<1270>, Tx<0>, SimTx<1270:0>, BlockSize<489>, BTInterval<1951ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1270:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<26ms>, abci<0ms>, persist<26ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<25ms>>, Iavl[getnode<257>, rdb<2>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<121ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<66ms>, Precommit-0<59ms>, Commit-0-0<58ms>, RunTx-0<26ms>, Waiting<1630ms>]. module=main
I[2022-12-31|12:06:48.190][33627:207] Height<1271>, Tx<0>, SimTx<1271:0>, BlockSize<489>, BTInterval<1856ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1271:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1989ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<21ms>, Precommit-0<43ms>, Commit-0-0<46ms>, RunTx-0<21ms>, Waiting<1791ms>]. module=main
I[2022-12-31|12:06:50.190][33627:207] Height<1272>, Tx<0>, SimTx<1272:0>, BlockSize<489>, BTInterval<2031ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1272:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<47ms>, abci<0ms>, persist<47ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<46ms>>, Iavl[getnode<320>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<62ms>, Commit-0-0<83ms>, RunTx-0<47ms>, Waiting<1677ms>]. module=main
I[2022-12-31|12:06:52.190][33627:207] Height<1273>, Tx<0>, SimTx<1273:0>, BlockSize<489>, BTInterval<1985ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1273:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1978ms>, enterPropose-0-y-f515c7<47ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<22ms>, Commit-0-0<42ms>, RunTx-0<38ms>, Waiting<1761ms>]. module=main
I[2022-12-31|12:06:54.190][33627:207] Height<1274>, Tx<0>, SimTx<1274:0>, BlockSize<489>, BTInterval<2015ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1274:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<29ms>, abci<0ms>, persist<29ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<27ms>>, Iavl[getnode<256>, rdb<4>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<2000ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<66ms>, Commit-0-0<64ms>, RunTx-0<29ms>, Waiting<1711ms>]. module=main
I[2022-12-31|12:06:56.191][33627:207] Height<1275>, Tx<0>, SimTx<1275:0>, BlockSize<489>, BTInterval<2040ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1275:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<42ms>, abci<0ms>, persist<42ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<41ms>>, Iavl[getnode<315>, rdb<0>, rdbTs<0ms>, savenode<93>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<65ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<63ms>, Precommit-0<107ms>, Commit-0-0<64ms>, RunTx-0<42ms>, Waiting<1632ms>]. module=main
I[2022-12-31|12:06:58.191][33627:207] Height<1276>, Tx<0>, SimTx<1276:0>, BlockSize<489>, BTInterval<1983ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1276:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<21ms>, abci<0ms>, persist<21ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<20ms>>, Iavl[getnode<265>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1992ms>, enterPropose-0-y-f515c7<81ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<43ms>, Precommit-0<42ms>, Commit-0-0<42ms>, RunTx-0<21ms>, Waiting<1739ms>]. module=main
I[2022-12-31|12:07:00.191][33627:207] Height<1277>, Tx<0>, SimTx<1277:0>, BlockSize<489>, BTInterval<2008ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1277:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<43ms>, abci<0ms>, persist<43ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<42ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<37ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<64ms>, Precommit-0<124ms>, Commit-0-0<64ms>, RunTx-0<43ms>, Waiting<1622ms>]. module=main
I[2022-12-31|12:07:02.191][33627:207] Height<1278>, Tx<0>, SimTx<1278:0>, BlockSize<489>, BTInterval<2027ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1278:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<38ms>, abci<0ms>, persist<38ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<37ms>>, Iavl[getnode<325>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1979ms>, enterPropose-0-y-f515c7<43ms>, recvProposal<42ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<82ms>, Commit-0-0<64ms>, RunTx-0<38ms>, Waiting<1625ms>]. module=main
I[2022-12-31|12:07:04.191][33627:207] Height<1279>, Tx<0>, SimTx<1279:0>, BlockSize<489>, BTInterval<1972ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1279:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<4ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<259>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1985ms>, enterPropose-0-y-f515c7<71ms>, recvProposal<23ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<49ms>, Commit-0-0<49ms>, RunTx-0<5ms>, Waiting<1736ms>]. module=main
I[2022-12-31|12:07:06.191][33627:207] Height<1280>, Tx<0>, SimTx<1280:0>, BlockSize<489>, BTInterval<2029ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1280:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<261>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<67ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<82ms>, Precommit-0<103ms>, Commit-0-0<81ms>, RunTx-0<23ms>, Waiting<1600ms>]. module=main
I[2022-12-31|12:07:08.191][33627:207] Height<1281>, Tx<0>, SimTx<1281:0>, BlockSize<489>, BTInterval<1937ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1281:0>, InvalidTxs<0>, lastRun<1ms>, RunTx<ApplyBlock<23ms>, abci<0ms>, persist<23ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<21ms>>, Iavl[getnode<328>, rdb<0>, rdbTs<0ms>, savenode<96>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<53ms>, recvProposal<24ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<49ms>, Precommit-0<71ms>, Commit-0-0<68ms>, RunTx-0<23ms>, Waiting<1708ms>]. module=main
I[2022-12-31|12:07:10.192][33627:207] Height<1282>, Tx<0>, SimTx<1282:0>, BlockSize<489>, BTInterval<2108ms>, LastBlockTime<2001ms>, GasUsed<0>, SimGasUsed<1282:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<5ms>, abci<0ms>, persist<4ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<3ms>>, Iavl[getnode<260>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1980ms>, enterPropose-0-y-f515c7<92ms>, recvProposal<45ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<72ms>, Precommit-0<55ms>, Commit-0-0<95ms>, RunTx-0<5ms>, Waiting<1613ms>]. module=main
I[2022-12-31|12:07:12.192][33627:207] Height<1283>, Tx<0>, SimTx<1283:0>, BlockSize<489>, BTInterval<1911ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1283:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<1ms>, flushMeta<20ms>>, Iavl[getnode<255>, rdb<0>, rdbTs<0ms>, savenode<94>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1984ms>, enterPropose-0-y-f515c7<64ms>, recvProposal<20ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<44ms>, Precommit-0<45ms>, Commit-0-0<42ms>, RunTx-0<22ms>, Waiting<1743ms>]. module=main
I[2022-12-31|12:07:14.192][33627:207] Height<1284>, Tx<0>, SimTx<1284:0>, BlockSize<489>, BTInterval<1989ms>, LastBlockTime<2000ms>, GasUsed<0>, SimGasUsed<1284:0>, InvalidTxs<0>, lastRun<0ms>, RunTx<ApplyBlock<22ms>, abci<0ms>, persist<22ms>>, Prerun<1>, MempoolTxs<0>, Workload<0.01|0.01|0.01|0.01>, persistDetails<preChange<0ms>, flushCache<0ms>, commitStores<0ms>, flushMeta<21ms>>, Iavl[getnode<263>, rdb<0>, rdbTs<0ms>, savenode<95>], DeliverTxs[RunAnte<0ms>, RunMsg<0ms>, refund<0ms>], Round[0], CommitRound[-1], Produce[Consensus<1999ms>, enterPropose-0-y-f515c7<48ms>, recvProposal<21ms>, 1stPart<0ms>, lastPart<0ms>, Prevote-0<67ms>, Precommit-0<79ms>, Commit-0-0<64ms>, RunTx-0<22ms>, Waiting<1695ms>]. module=main