Skip to content

Instantly share code, notes, and snippets.

@thanethomson
Last active November 5, 2019 15:42
Show Gist options
  • Save thanethomson/c313eacd68a8dea2ad3d503d4e9bb30f to your computer and use it in GitHub Desktop.
Save thanethomson/c313eacd68a8dea2ad3d503d4e9bb30f to your computer and use it in GitHub Desktop.
Issue with load testing 16-validator network
# This is a TOML config file.
# For more information, see https://github.com/toml-lang/toml
##### main base config options #####
# TCP or UNIX socket address of the ABCI application,
# or the name of an ABCI application compiled in with the Tendermint binary
proxy_app = "kvstore"
# A custom human readable name for this node
moniker = ""
# If this node is many blocks behind the tip of the chain, FastSync
# allows them to catchup quickly by downloading blocks in parallel
# and verifying their commits
fast_sync = true
# Database backend: goleveldb | cleveldb | boltdb
# * goleveldb (github.com/syndtr/goleveldb - most popular implementation)
# - pure go
# - stable
# * cleveldb (uses levigo wrapper)
# - fast
# - requires gcc
# - use cleveldb build tag (go build -tags cleveldb)
# * boltdb (uses etcd's fork of bolt - github.com/etcd-io/bbolt)
# - EXPERIMENTAL
# - may be faster is some use-cases (random reads - indexer)
# - use boltdb build tag (go build -tags boltdb)
db_backend = "cleveldb"
# Database directory
db_dir = "data"
# Output level for logging, including package level options
log_level = "main:info,state:info,*:info"
# Output format: 'plain' (colored text) or 'json'
log_format = "plain"
##### additional base config options #####
# Path to the JSON file containing the initial validator set and other meta data
genesis_file = "config/genesis.json"
# Path to the JSON file containing the private key to use as a validator in the consensus protocol
priv_validator_key_file = "config/priv_validator_key.json"
# Path to the JSON file containing the last sign state of a validator
priv_validator_state_file = "data/priv_validator_state.json"
# TCP or UNIX socket address for Tendermint to listen on for
# connections from an external PrivValidator process
priv_validator_laddr = ""
# Path to the JSON file containing the private key to use for node authentication in the p2p protocol
node_key_file = "config/node_key.json"
# Mechanism to connect to the ABCI application: socket | grpc
abci = "socket"
# TCP or UNIX socket address for the profiling server to listen on
prof_laddr = ""
# If true, query the ABCI app on connecting to a new peer
# so the app can decide if we should keep the connection or not
filter_peers = false
##### advanced configuration options #####
##### rpc server configuration options #####
[rpc]
# TCP or UNIX socket address for the RPC server to listen on
laddr = "tcp://0.0.0.0:26657"
# A list of origins a cross-domain request can be executed from
# Default value '[]' disables cors support
# Use '["*"]' to allow any origin
cors_allowed_origins = []
# A list of methods the client is allowed to use with cross-domain requests
cors_allowed_methods = ["HEAD", "GET", "POST", ]
# A list of non simple headers the client is allowed to use with cross-domain requests
cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ]
# TCP or UNIX socket address for the gRPC server to listen on
# NOTE: This server only supports /broadcast_tx_commit
grpc_laddr = ""
# Maximum number of simultaneous connections.
# Does not include RPC (HTTP&WebSocket) connections. See max_open_connections
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
# 1024 - 40 - 10 - 50 = 924 = ~900
grpc_max_open_connections = 900
# Activate unsafe RPC commands like /dial_seeds and /unsafe_flush_mempool
unsafe = false
# Maximum number of simultaneous connections (including WebSocket).
# Does not include gRPC connections. See grpc_max_open_connections
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
# Should be < {ulimit -Sn} - {MaxNumInboundPeers} - {MaxNumOutboundPeers} - {N of wal, db and other open files}
# 1024 - 40 - 10 - 50 = 924 = ~900
max_open_connections = 900
# Maximum number of unique clientIDs that can /subscribe
# If you're using /broadcast_tx_commit, set to the estimated maximum number
# of broadcast_tx_commit calls per block.
max_subscription_clients = 100
# Maximum number of unique queries a given client can /subscribe to
# If you're using GRPC (or Local RPC client) and /broadcast_tx_commit, set to
# the estimated # maximum number of broadcast_tx_commit calls per block.
max_subscriptions_per_client = 5
# How long to wait for a tx to be committed during /broadcast_tx_commit.
# WARNING: Using a value larger than 10s will result in increasing the
# global HTTP write timeout, which applies to all connections and endpoints.
# See https://github.com/tendermint/tendermint/issues/3435
timeout_broadcast_tx_commit = "10s"
# The name of a file containing certificate that is used to create the HTTPS server.
# If the certificate is signed by a certificate authority,
# the certFile should be the concatenation of the server's certificate, any intermediates,
# and the CA's certificate.
# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
tls_cert_file = ""
# The name of a file containing matching private key that is used to create the HTTPS server.
# NOTE: both tls_cert_file and tls_key_file must be present for Tendermint to create HTTPS server. Otherwise, HTTP server is run.
tls_key_file = ""
##### peer to peer configuration options #####
[p2p]
# Address to listen for incoming connections
laddr = "tcp://0.0.0.0:26656"
# Address to advertise to peers for them to dial
# If empty, will use the same port as the laddr,
# and will introspect on the listener or use UPnP
# to figure out the address.
external_address = ""
# Comma separated list of seed nodes to connect to
seeds = ""
# Comma separated list of nodes to keep persistent connections to
persistent_peers = ""
# UPNP port forwarding
upnp = false
# Path to address book
addr_book_file = "config/addrbook.json"
# Set true for strict address routability rules
# Set false for private or local networks
addr_book_strict = false
# Maximum number of inbound peers
max_num_inbound_peers = 40
# Maximum number of outbound peers to connect to, excluding persistent peers
max_num_outbound_peers = 10
# Time to wait before flushing messages out on the connection
flush_throttle_timeout = "10ms"
# Maximum size of a message packet payload, in bytes
max_packet_msg_payload_size = 1024
# Rate at which packets can be sent, in bytes/second
send_rate = 5120000
# Rate at which packets can be received, in bytes/second
recv_rate = 5120000
# Set true to enable the peer-exchange reactor
pex = true
# Seed mode, in which node constantly crawls the network and looks for
# peers. If another node asks it for addresses, it responds and disconnects.
#
# Does not work if the peer-exchange reactor is disabled.
seed_mode = false
# Comma separated list of peer IDs to keep private (will not be gossiped to other peers)
private_peer_ids = ""
# Toggle to disable guard against peers connecting from the same ip.
allow_duplicate_ip = true
# Peer connection configuration.
handshake_timeout = "20s"
dial_timeout = "3s"
##### mempool configuration options #####
[mempool]
recheck = false
broadcast = true
wal_dir = ""
# Maximum number of transactions in the mempool
size = 50000
# Limit the total size of all txs in the mempool.
# This only accounts for raw transactions (e.g. given 1MB transactions and
# max_txs_bytes=5MB, mempool will only accept 5 transactions).
max_txs_bytes = 1073741824
# Size of the cache (used to filter transactions we saw earlier) in transactions
cache_size = 10000
##### consensus configuration options #####
[consensus]
wal_file = "data/cs.wal/wal"
timeout_propose = "3s"
timeout_propose_delta = "500ms"
timeout_prevote = "1s"
timeout_prevote_delta = "500ms"
timeout_precommit = "1s"
timeout_precommit_delta = "500ms"
timeout_commit = "1s"
# Make progress as soon as we have all the precommits (as if TimeoutCommit = 0)
skip_timeout_commit = true
# EmptyBlocks mode and possible interval between empty blocks
create_empty_blocks = false
create_empty_blocks_interval = "0s"
# Reactor sleep duration parameters
peer_gossip_sleep_duration = "100ms"
peer_query_maj23_sleep_duration = "2s"
##### transactions indexer configuration options #####
[tx_index]
# What indexer to use for transactions
#
# Options:
# 1) "null"
# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
indexer = "kv"
# Comma-separated list of tags to index (by default the only tag is "tx.hash")
#
# You can also index transactions by height by adding "tx.height" tag here.
#
# It's recommended to index only a subset of tags due to possible memory
# bloat. This is, of course, depends on the indexer's DB and the volume of
# transactions.
index_tags = ""
# When set to true, tells indexer to index all tags (predefined tags:
# "tx.hash", "tx.height" and all tags from DeliverTx responses).
#
# Note this may be not desirable (see the comment above). IndexTags has a
# precedence over IndexAllTags (i.e. when given both, IndexTags will be
# indexed).
index_all_tags = false
##### instrumentation configuration options #####
[instrumentation]
# When true, Prometheus metrics are served under /metrics on
# PrometheusListenAddr.
# Check out the documentation for the list of available metrics.
prometheus = true
# Address to listen for Prometheus collector(s) connections
prometheus_listen_addr = ":26660"
# Maximum number of simultaneous connections.
# If you want to accept a larger number than the default, make sure
# you increase your OS limits.
# 0 - unlimited.
max_open_connections = 5
# Instrumentation namespace
namespace = "tendermint"
@thanethomson
Copy link
Author

thanethomson commented Aug 15, 2019

So this test is executed using 16 validators spread across 7 AWS regions. Load tests of 100, 200 and 400 txs/sec work just fine. The moment we hit 800 txs/sec, all hell seems to break loose. The mempool quickly fills up and basically locks up completely. Transactions only get committed when the load test's over.

Transactions are submitted by a single tm-bench instance connected to a single validator.

Screen Shot 2019-08-15 at 4 39 40 PM

@thanethomson
Copy link
Author

thanethomson commented Aug 15, 2019

Looking into the generateTx function in tm-bench, there doesn't seem to be much chance of collisions in transactions being generated, but looking at some of the logs for the Tendermint nodes it does look as though loads of duplicate txs come through:

Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.187] Starting multiAppConn                        module=proxy impl=multiAppConn
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.188] Starting localClient                         module=abci-client connection=query impl=localClient
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.188] Starting localClient                         module=abci-client connection=mempool impl=localClient
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.188] Starting localClient                         module=abci-client connection=consensus impl=localClient
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.188] Starting EventBus                            module=events impl=EventBus
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.188] Starting PubSub                              module=pubsub impl=PubSub
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.191] Starting IndexerService                      module=txindex impl=IndexerService
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.191] ABCI Handshake App Info                      module=consensus height=0 hash= software-version=0.16.1 protocol-version=1
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.193] ABCI Replay Blocks                           module=consensus appHeight=0 storeHeight=0 stateHeight=0
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.194] Completed ABCI Handshake - Tendermint and App are synced module=consensus appHeight=0 appHash=
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.196] Version info                                 module=main software=0.32.1 block=10 p2p=7
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.196] This node is a validator                     module=consensus addr=DAD34138EA8D342AFFE33E3944ABD3A59DAEB82C pubKey=PubKeyEd25519{0C0C87DC033BC2A08D0ADF4971A0741F3FAEFC4E2F461C2D25F39039E3421DE7}
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.201] P2P Node ID                                  module=p2p ID=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4 file=/home/tendermint/.tendermint/config/node_key.json
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.201] Adding persistent peers                      module=p2p addrs="[547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d@ec2-18-219-36-16.us-east-2.compute.amazonaws.com:26656 7b80227db30e5374f901e179a51d031e2d60eccb@ec2-54-180-86-207.ap-northeast-2.compute.amazonaws.com:26656 cc3cc1621692e1aeb7eec4440536222f462fbd6b@ec2-3-16-152-6.us-east-2.compute.amazonaws.com:26656 dd088b8aa1d87bd2b865ab3daaa5e0a656968708@ec2-18-197-144-141.eu-central-1.compute.amazonaws.com:26656 9cc879d4c07ae124a355195cd5d2865d746a55d5@ec2-13-236-4-226.ap-southeast-2.compute.amazonaws.com:26656 75f32503543f12ce2cdb3e5ea198e5e8feb56ab0@ec2-52-58-146-198.eu-central-1.compute.amazonaws.com:26656 6c2436761bb3defc1c7bdf59857e9575e0e06b79@ec2-54-206-95-67.ap-southeast-2.compute.amazonaws.com:26656]"
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.458] Add our address to book                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@0.0.0.0:26656
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.458] Starting Node                                module=main impl=Node
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.458] Starting RPC HTTP server on [::]:26657       module=rpc-server
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.458] Starting P2P Switch                          module=p2p impl="P2P Switch"
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.459] Starting ConsensusReactor                    module=consensus impl=ConsensusReactor
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.459] ConsensusReactor                             module=consensus fastSync=true
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.459] Starting EvidenceReactor                     module=evidence impl=EvidenceReactor
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.459] Starting PEXReactor                          module=pex impl=PEXReactor
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] Starting AddrBook                            module=p2p book=/home/tendermint/.tendermint/config/addrbook.json impl=AddrBook
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] Starting Reactor                             module=mempool impl=Reactor
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] Starting BlockchainReactor                   module=blockchain impl=BlockchainReactor
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] Starting BlockPool                           module=blockchain impl=BlockPool
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] Ensure peers                                 module=pex numOutPeers=0 numInPeers=0 numDialing=0 numToDial=10
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.460] No addresses to dial. Falling back to seeds  module=pex
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: E[2019-08-15|20:12:20.460] Couldn't connect to any seeds                module=p2p
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.462] Saving AddrBook to file                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json size=7
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.464] Started node                                 module=main nodeInfo="{ProtocolVersion:{P2P:7 Block:10 App:1} ID_:1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4 ListenAddr:tcp://0.0.0.0:26656 Network:testnet_16validators Version:0.32.1 Channels:4020212223303800 Moniker:ec2-13-125-216-77.ap-northeast-2.compute.amazonaws.com Other:{TxIndex:on RPCAddress:tcp://0.0.0.0:26657}}"
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.590] Dialing peer                                 module=p2p address=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: E[2019-08-15|20:12:20.776] Error dialing peer                           module=p2p err="dial tcp 3.16.152.6:26656: connect: connection refused"
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.776] Reconnecting to peer                         module=p2p addr=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.777] Dialing peer                                 module=p2p address=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.962] Error reconnecting to peer. Trying again     module=p2p tries=0 err="dial tcp 3.16.152.6:26656: connect: connection refused" addr=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656
Aug 15 20:12:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:20.975] Dialing peer                                 module=p2p address=547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d@18.219.36.16:26656
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.531] Starting Peer                                module=p2p peer=547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d@18.219.36.16:26656 impl="Peer{MConn{18.219.36.16:26656} 547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d out}"
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.531] Starting MConnection                         module=p2p peer=547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d@18.219.36.16:26656 impl=MConn{18.219.36.16:26656}
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.531] Added peer                                   module=p2p peer="Peer{MConn{18.219.36.16:26656} 547791c1c5bd5e1c9f8fe7a236a86cb13ff5e84d out}"
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.639] Starting Peer                                module=p2p peer=7b80227db30e5374f901e179a51d031e2d60eccb@172.31.46.25:34698 impl="Peer{MConn{172.31.46.25:34698} 7b80227db30e5374f901e179a51d031e2d60eccb in}"
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.639] Starting MConnection                         module=p2p peer=7b80227db30e5374f901e179a51d031e2d60eccb@172.31.46.25:34698 impl=MConn{172.31.46.25:34698}
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.639] Added peer                                   module=p2p peer="Peer{MConn{172.31.46.25:34698} 7b80227db30e5374f901e179a51d031e2d60eccb in}"
Aug 15 20:12:21 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:21.859] Dialing peer                                 module=p2p address=75f32503543f12ce2cdb3e5ea198e5e8feb56ab0@52.58.146.198:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.134] Dialing peer                                 module=p2p address=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: E[2019-08-15|20:12:22.283] Error dialing peer                           module=p2p err="dial tcp 54.206.95.67:26656: connect: connection refused"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.283] Reconnecting to peer                         module=p2p addr=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.283] Dialing peer                                 module=p2p address=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.433] Error reconnecting to peer. Trying again     module=p2p tries=0 err="dial tcp 54.206.95.67:26656: connect: connection refused" addr=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] Time to switch to consensus reactor!         module=blockchain height=1
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] Stopping BlockPool                           module=blockchain impl=BlockPool
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] SwitchToConsensus                            module=consensus
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] Ignoring updateToState()                     module=consensus newHeight=1 oldHeight=1
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] Starting ConsensusState                      module=consensus impl=ConsensusState
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.461] Starting baseWAL                             module=consensus wal=/home/tendermint/.tendermint/data/cs.wal/wal impl=baseWAL
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Starting Group                               module=consensus wal=/home/tendermint/.tendermint/data/cs.wal/wal impl=Group
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Starting TimeoutTicker                       module=consensus impl=TimeoutTicker
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Searching for height                         module=consensus wal=/home/tendermint/.tendermint/data/cs.wal/wal height=1 min=0 max=0
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Searching for height                         module=consensus wal=/home/tendermint/.tendermint/data/cs.wal/wal height=0 min=0 max=0
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Found                                        module=consensus wal=/home/tendermint/.tendermint/data/cs.wal/wal height=0 index=0
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Catchup by replaying consensus messages      module=consensus height=1
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Replay: Done                                 module=consensus
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] Timed out                                    module=consensus dur=-1.261356183s height=1 round=0 step=RoundStepNewHeight
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] enterNewRound(1/0). Current: 1/0/RoundStepNewHeight module=consensus height=1 round=0
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] enterPropose(1/0). Current: 1/0/RoundStepNewRound module=consensus height=1 round=0
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.462] enterPropose: Not our turn to propose        module=consensus height=1 round=0 proposer=0F8C976C3CFFC6E45AA11AB501C3CB2BDE08B665 privValidator="PrivValidator{DAD34138EA8D342AFFE33E3944ABD3A59DAEB82C LH:0, LR:0, LS:0}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.538] Starting Peer                                module=p2p peer=433f3ff1b13f9b9fda79cc78aaf9f7fbff712692@184.73.151.127:48662 impl="Peer{MConn{184.73.151.127:48662} 433f3ff1b13f9b9fda79cc78aaf9f7fbff712692 in}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.538] Starting MConnection                         module=p2p peer=433f3ff1b13f9b9fda79cc78aaf9f7fbff712692@184.73.151.127:48662 impl=MConn{184.73.151.127:48662}
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.538] Added peer                                   module=p2p peer="Peer{MConn{184.73.151.127:48662} 433f3ff1b13f9b9fda79cc78aaf9f7fbff712692 in}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.549] Dialing peer                                 module=p2p address=9cc879d4c07ae124a355195cd5d2865d746a55d5@13.236.4.226:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.667] Dialing peer                                 module=p2p address=dd088b8aa1d87bd2b865ab3daaa5e0a656968708@18.197.144.141:26656
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.682] Starting Peer                                module=p2p peer=75f32503543f12ce2cdb3e5ea198e5e8feb56ab0@52.58.146.198:26656 impl="Peer{MConn{52.58.146.198:26656} 75f32503543f12ce2cdb3e5ea198e5e8feb56ab0 out}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.682] Starting MConnection                         module=p2p peer=75f32503543f12ce2cdb3e5ea198e5e8feb56ab0@52.58.146.198:26656 impl=MConn{52.58.146.198:26656}
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.682] Added peer                                   module=p2p peer="Peer{MConn{52.58.146.198:26656} 75f32503543f12ce2cdb3e5ea198e5e8feb56ab0 out}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.998] Starting Peer                                module=p2p peer=9cc879d4c07ae124a355195cd5d2865d746a55d5@13.236.4.226:26656 impl="Peer{MConn{13.236.4.226:26656} 9cc879d4c07ae124a355195cd5d2865d746a55d5 out}"
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.998] Starting MConnection                         module=p2p peer=9cc879d4c07ae124a355195cd5d2865d746a55d5@13.236.4.226:26656 impl=MConn{13.236.4.226:26656}
Aug 15 20:12:22 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:22.998] Added peer                                   module=p2p peer="Peer{MConn{13.236.4.226:26656} 9cc879d4c07ae124a355195cd5d2865d746a55d5 out}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.005] Starting Peer                                module=p2p peer=b68a3263fbc892cd4916723bb195e459eaac5b24@54.210.130.71:55178 impl="Peer{MConn{54.210.130.71:55178} b68a3263fbc892cd4916723bb195e459eaac5b24 in}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.005] Starting MConnection                         module=p2p peer=b68a3263fbc892cd4916723bb195e459eaac5b24@54.210.130.71:55178 impl=MConn{54.210.130.71:55178}
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.005] Added peer                                   module=p2p peer="Peer{MConn{54.210.130.71:55178} b68a3263fbc892cd4916723bb195e459eaac5b24 in}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.019] Received proposal                            module=consensus proposal="Proposal{1/0 (36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1, -1) 85D3F3C4EE50 @ 2019-08-15T20:12:17.487004296Z}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.020] Added to prevote                             module=consensus vote="Vote{5:7D9C04365FD6 1/00/1(Prevote) 36DC511E6C9D 210D9ED48E03 @ 2019-08-15T20:12:17.630447983Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.0625) BA{16:_____x__________} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.020] Received complete proposal block             module=consensus height=1 hash=36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.020] enterPrevote(1/0). Current: 1/0/RoundStepPropose module=consensus
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.020] enterPrevote: ProposalBlock is valid         module=consensus height=1 round=0
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.023] Signed and pushed vote                       module=consensus height=1 round=0 vote="Vote{12:DAD34138EA8D 1/00/1(Prevote) 36DC511E6C9D 9DFED1E98B10 @ 2019-08-15T20:12:23.021993398Z}" err=null
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.024] Added to prevote                             module=consensus vote="Vote{12:DAD34138EA8D 1/00/1(Prevote) 36DC511E6C9D 9DFED1E98B10 @ 2019-08-15T20:12:23.021993398Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.125) BA{16:_____x______x___} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.024] Added to prevote                             module=consensus vote="Vote{1:141681FA3ABF 1/00/1(Prevote) 36DC511E6C9D F2EC1AF3FE2F @ 2019-08-15T20:12:18.177832843Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.1875) BA{16:_x___x______x___} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.025] Added to prevote                             module=consensus vote="Vote{2:166A3531DC3F 1/00/1(Prevote) 36DC511E6C9D 3E3BC2F22867 @ 2019-08-15T20:12:17.775521614Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.25) BA{16:_xx__x______x___} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.025] Added to prevote                             module=consensus vote="Vote{15:FE09E79FE9BF 1/00/1(Prevote) 36DC511E6C9D 0B5B4ED9B131 @ 2019-08-15T20:12:17.692442527Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.3125) BA{16:_xx__x______x__x} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.026] Added to prevote                             module=consensus vote="Vote{0:0F8C976C3CFF 1/00/1(Prevote) 36DC511E6C9D A87E83DB6FFF @ 2019-08-15T20:12:17.491924453Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.375) BA{16:xxx__x______x__x} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.026] Added to prevote                             module=consensus vote="Vote{11:B6C9C003C186 1/00/1(Prevote) 36DC511E6C9D 6B1DFA3A96EF @ 2019-08-15T20:12:17.732808965Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.4375) BA{16:xxx__x_____xx__x} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.222] Added to prevote                             module=consensus vote="Vote{14:F00103649296 1/00/1(Prevote) 36DC511E6C9D A372ECDE9AA4 @ 2019-08-15T20:12:23.125291195Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.5) BA{16:xxx__x_____xx_xx} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.280] Added to prevote                             module=consensus vote="Vote{10:B0D5A61F3DE6 1/00/1(Prevote) 36DC511E6C9D 37037AE35E98 @ 2019-08-15T20:12:23.088613367Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.5625) BA{16:xxx__x____xxx_xx} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.464] Added to prevote                             module=consensus vote="Vote{7:921F2EB5AF3A 1/00/1(Prevote) 36DC511E6C9D D72121834A91 @ 2019-08-15T20:12:23.286915712Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:<nil>(0.625) BA{16:xxx__x_x__xxx_xx} map[]}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.490] Starting Peer                                module=p2p peer=dd088b8aa1d87bd2b865ab3daaa5e0a656968708@18.197.144.141:26656 impl="Peer{MConn{18.197.144.141:26656} dd088b8aa1d87bd2b865ab3daaa5e0a656968708 out}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.490] Starting MConnection                         module=p2p peer=dd088b8aa1d87bd2b865ab3daaa5e0a656968708@18.197.144.141:26656 impl=MConn{18.197.144.141:26656}
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.490] Added peer                                   module=p2p peer="Peer{MConn{18.197.144.141:26656} dd088b8aa1d87bd2b865ab3daaa5e0a656968708 out}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.595] Starting Peer                                module=p2p peer=29266701a727a1058055d6c551d8fff139f5bb59@18.197.147.159:55398 impl="Peer{MConn{18.197.147.159:55398} 29266701a727a1058055d6c551d8fff139f5bb59 in}"
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.595] Starting MConnection                         module=p2p peer=29266701a727a1058055d6c551d8fff139f5bb59@18.197.147.159:55398 impl=MConn{18.197.147.159:55398}
Aug 15 20:12:23 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:23.595] Added peer                                   module=p2p peer="Peer{MConn{18.197.147.159:55398} 29266701a727a1058055d6c551d8fff139f5bb59 in}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.659] Added to prevote                             module=consensus vote="Vote{8:9326B163175D 1/00/1(Prevote) 36DC511E6C9D F3ADFAEB0491 @ 2019-08-15T20:12:24.287748353Z}" prevotes="VoteSet{H:1 R:0 T:1 +2/3:36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1(0.6875) BA{16:xxx__x_xx_xxx_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.659] Updating ValidBlock because of POL.          module=consensus validRound=-1 POLRound=0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.659] enterPrecommit(1/0). Current: 1/0/RoundStepPrevote module=consensus height=1 round=0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.660] enterPrecommit: +2/3 prevoted proposal block. Locking module=consensus height=1 round=0 hash=36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.662] Signed and pushed vote                       module=consensus height=1 round=0 vote="Vote{12:DAD34138EA8D 1/00/2(Precommit) 36DC511E6C9D A4CE82230FDD @ 2019-08-15T20:12:24.661469016Z}" err=null
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.664] Added to precommit                           module=consensus vote="Vote{12:DAD34138EA8D 1/00/2(Precommit) 36DC511E6C9D A4CE82230FDD @ 2019-08-15T20:12:24.661469016Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.0625) BA{16:____________x___} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.664] Added to precommit                           module=consensus vote="Vote{8:9326B163175D 1/00/2(Precommit) 36DC511E6C9D E98F8D0EE97E @ 2019-08-15T20:12:24.29697625Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.125) BA{16:________x___x___} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.664] Added to precommit                           module=consensus vote="Vote{7:921F2EB5AF3A 1/00/2(Precommit) 36DC511E6C9D B3260BC1A094 @ 2019-08-15T20:12:24.486767186Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.1875) BA{16:_______xx___x___} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.672] Added to precommit                           module=consensus vote="Vote{2:166A3531DC3F 1/00/2(Precommit) 36DC511E6C9D 583679305ADE @ 2019-08-15T20:12:24.438334945Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.25) BA{16:__x____xx___x___} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.683] Added to precommit                           module=consensus vote="Vote{10:B0D5A61F3DE6 1/00/2(Precommit) 36DC511E6C9D 2BB1D336A392 @ 2019-08-15T20:12:24.491954318Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.3125) BA{16:__x____xx_x_x___} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.774] Added to precommit                           module=consensus vote="Vote{14:F00103649296 1/00/2(Precommit) 36DC511E6C9D B2F950BDD23D @ 2019-08-15T20:12:24.674524295Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.375) BA{16:__x____xx_x_x_x_} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.775] Added to precommit                           module=consensus vote="Vote{15:FE09E79FE9BF 1/00/2(Precommit) 36DC511E6C9D CEFCCCC411F5 @ 2019-08-15T20:12:24.538298012Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.4375) BA{16:__x____xx_x_x_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.776] Added to precommit                           module=consensus vote="Vote{5:7D9C04365FD6 1/00/2(Precommit) 36DC511E6C9D 788D9290FC05 @ 2019-08-15T20:12:24.581342605Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.5) BA{16:__x__x_xx_x_x_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.776] Added to precommit                           module=consensus vote="Vote{1:141681FA3ABF 1/00/2(Precommit) 36DC511E6C9D 8F58547E0DEF @ 2019-08-15T20:12:24.5380165Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.5625) BA{16:_xx__x_xx_x_x_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.777] Added to precommit                           module=consensus vote="Vote{11:B6C9C003C186 1/00/2(Precommit) 36DC511E6C9D 206F251DB80D @ 2019-08-15T20:12:24.581210404Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:<nil>(0.625) BA{16:_xx__x_xx_xxx_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.874] Added to precommit                           module=consensus vote="Vote{0:0F8C976C3CFF 1/00/2(Precommit) 36DC511E6C9D AD5DB39B2BB2 @ 2019-08-15T20:12:24.538105175Z}" precommits="VoteSet{H:1 R:0 T:2 +2/3:36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1(0.6875) BA{16:xxx__x_xx_xxx_xx} map[]}"
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.875] enterCommit(1/0). Current: 1/0/RoundStepPrecommit module=consensus height=1 commitRound=0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.875] Commit is for locked block. Set ProposalBlock=LockedBlock module=consensus height=1 commitRound=0 blockHash=36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.876] Finalizing commit of block with 0 txs        module=consensus height=1 hash=36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08 root=
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.876] Block{
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Header{
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Version:        {10 1}
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: ChainID:        testnet_16validators
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Height:         1
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Time:           2019-08-15 20:06:39.052185 +0000 UTC
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: NumTxs:         0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: TotalTxs:       0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: LastBlockID:    :0:000000000000
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: LastCommit:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Data:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Validators:     30F88B8557B8827C9CBE408EB5992ABB1B7411C37672BBAAED37BF3626030825
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: NextValidators: 30F88B8557B8827C9CBE408EB5992ABB1B7411C37672BBAAED37BF3626030825
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: App:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Consensus:       048091BC7DDC283F77BFBF91D73C44DA58C3DF8A9CBC867405D8B7F3DAADA22F
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Results:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Evidence:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Proposer:       0F8C976C3CFFC6E45AA11AB501C3CB2BDE08B665
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: }#36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Data{
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: }#
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: EvidenceData{
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: }#
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Commit{
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: BlockID:    :0:000000000000
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: Precommits:
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: }#
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: }#36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08 module=consensus
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.880] Executed block                               module=state height=1 validTxs=0 invalidTxs=0
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.881] Committed state                              module=state height=1 txs=0 appHash=0000000000000000
Aug 15 20:12:24 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:24.883] Indexed block                                module=txindex height=1
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.205] Starting Peer                                module=p2p peer=95cbb5d45ef53a750e9dd653936cbd372d6c531c@18.194.185.184:41168 impl="Peer{MConn{18.194.185.184:41168} 95cbb5d45ef53a750e9dd653936cbd372d6c531c in}"
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.205] Starting MConnection                         module=p2p peer=95cbb5d45ef53a750e9dd653936cbd372d6c531c@18.194.185.184:41168 impl=MConn{18.194.185.184:41168}
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.206] Added peer                                   module=p2p peer="Peer{MConn{18.194.185.184:41168} 95cbb5d45ef53a750e9dd653936cbd372d6c531c in}"
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.213] Added to lastPrecommits: VoteSet{H:1 R:0 T:2 +2/3:36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1(0.75) BA{16:xxx__xxxx_xxx_xx} map[]} module=consensus
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.876] Timed out                                    module=consensus dur=992.817639ms height=2 round=0 step=RoundStepNewHeight
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.876] enterNewRound(2/0). Current: 2/0/RoundStepNewHeight module=consensus height=2 round=0
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.876] enterPropose(2/0). Current: 2/0/RoundStepNewRound module=consensus height=2 round=0
Aug 15 20:12:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:25.876] enterPropose: Not our turn to propose        module=consensus height=2 round=0 proposer=141681FA3ABF83FED34CF107628BE3BC1AFDA4FA privValidator="PrivValidator{DAD34138EA8D342AFFE33E3944ABD3A59DAEB82C LH:1, LR:0, LS:3}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.153] Received proposal                            module=consensus proposal="Proposal{2/0 (7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB, -1) 3C1C1AB7ADEA @ 2019-08-15T20:12:25.914368548Z}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.154] Received complete proposal block             module=consensus height=2 hash=7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.154] enterPrevote(2/0). Current: 2/0/RoundStepPropose module=consensus
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.157] enterPrevote: ProposalBlock is valid         module=consensus height=2 round=0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.159] Signed and pushed vote                       module=consensus height=2 round=0 vote="Vote{12:DAD34138EA8D 2/00/1(Prevote) 7F1DBFB66757 84BEC5A26FE5 @ 2019-08-15T20:12:26.158591357Z}" err=null
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.161] Added to prevote                             module=consensus vote="Vote{12:DAD34138EA8D 2/00/1(Prevote) 7F1DBFB66757 84BEC5A26FE5 @ 2019-08-15T20:12:26.158591357Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.0625) BA{16:____________x___} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.161] Added to prevote                             module=consensus vote="Vote{1:141681FA3ABF 2/00/1(Prevote) 7F1DBFB66757 680B847CC5F7 @ 2019-08-15T20:12:25.921492839Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.125) BA{16:_x__________x___} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.201] Added to prevote                             module=consensus vote="Vote{15:FE09E79FE9BF 2/00/1(Prevote) 7F1DBFB66757 620F6F3D56BF @ 2019-08-15T20:12:26.02331298Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.1875) BA{16:_x__________x__x} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.203] Added to prevote                             module=consensus vote="Vote{0:0F8C976C3CFF 2/00/1(Prevote) 7F1DBFB66757 2E21FC22DAD7 @ 2019-08-15T20:12:26.023064556Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.25) BA{16:xx__________x__x} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.262] Added to prevote                             module=consensus vote="Vote{14:F00103649296 2/00/1(Prevote) 7F1DBFB66757 69EAE73F1548 @ 2019-08-15T20:12:26.15903912Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.3125) BA{16:xx__________x_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.264] Added to prevote                             module=consensus vote="Vote{5:7D9C04365FD6 2/00/1(Prevote) 7F1DBFB66757 FD1DF0634931 @ 2019-08-15T20:12:26.0671205Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.375) BA{16:xx___x______x_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.264] Added to prevote                             module=consensus vote="Vote{10:B0D5A61F3DE6 2/00/1(Prevote) 7F1DBFB66757 A6880B6574AF @ 2019-08-15T20:12:26.069660362Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.4375) BA{16:xx___x____x_x_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.265] Added to prevote                             module=consensus vote="Vote{11:B6C9C003C186 2/00/1(Prevote) 7F1DBFB66757 AFD044B61689 @ 2019-08-15T20:12:26.065627003Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.5) BA{16:xx___x____xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.267] Added to prevote                             module=consensus vote="Vote{2:166A3531DC3F 2/00/1(Prevote) 7F1DBFB66757 84123A046333 @ 2019-08-15T20:12:26.027604718Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.5625) BA{16:xxx__x____xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.342] Added to prevote                             module=consensus vote="Vote{7:921F2EB5AF3A 2/00/1(Prevote) 7F1DBFB66757 37556C3F0C05 @ 2019-08-15T20:12:26.164334364Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:<nil>(0.625) BA{16:xxx__x_x__xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.444] Added to prevote                             module=consensus vote="Vote{6:88F98028DB5C 2/00/1(Prevote) 7F1DBFB66757 EFB1A40E12EA @ 2019-08-15T20:12:26.166753926Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.6875) BA{16:xxx__xxx__xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.444] Updating ValidBlock because of POL.          module=consensus validRound=-1 POLRound=0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.444] enterPrecommit(2/0). Current: 2/0/RoundStepPrevote module=consensus height=2 round=0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.445] enterPrecommit: +2/3 prevoted proposal block. Locking module=consensus height=2 round=0 hash=7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.450] Signed and pushed vote                       module=consensus height=2 round=0 vote="Vote{12:DAD34138EA8D 2/00/2(Precommit) 7F1DBFB66757 D2589064C59B @ 2019-08-15T20:12:26.44948587Z}" err=null
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.452] Added to precommit                           module=consensus vote="Vote{12:DAD34138EA8D 2/00/2(Precommit) 7F1DBFB66757 D2589064C59B @ 2019-08-15T20:12:26.44948587Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.0625) BA{16:____________x___} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.464] Added to prevote                             module=consensus vote="Vote{8:9326B163175D 2/00/1(Prevote) 7F1DBFB66757 EDFC66181A48 @ 2019-08-15T20:12:26.177027163Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.75) BA{16:xxx__xxxx_xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.465] Added to precommit                           module=consensus vote="Vote{14:F00103649296 2/00/2(Precommit) 7F1DBFB66757 3B9100A839BF @ 2019-08-15T20:12:26.376347474Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.125) BA{16:____________x_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.621] Added to prevote                             module=consensus vote="Vote{13:DFD2D0D9D546 2/00/1(Prevote) 7F1DBFB66757 D1B10242AECE @ 2019-08-15T20:12:26.294501547Z}" prevotes="VoteSet{H:2 R:0 T:1 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.8125) BA{16:xxx__xxxx_xxxxxx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.640] Added to precommit                           module=consensus vote="Vote{10:B0D5A61F3DE6 2/00/2(Precommit) 7F1DBFB66757 B4D27D17EE9A @ 2019-08-15T20:12:26.368830505Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.1875) BA{16:__________x_x_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.669] Added to precommit                           module=consensus vote="Vote{11:B6C9C003C186 2/00/2(Precommit) 7F1DBFB66757 CD04DD67A501 @ 2019-08-15T20:12:26.478259771Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.25) BA{16:__________xxx_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.688] Added to precommit                           module=consensus vote="Vote{1:141681FA3ABF 2/00/2(Precommit) 7F1DBFB66757 2A9ECD60F093 @ 2019-08-15T20:12:26.413554165Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.3125) BA{16:_x________xxx_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.707] Added to precommit                           module=consensus vote="Vote{7:921F2EB5AF3A 2/00/2(Precommit) 7F1DBFB66757 2EB4115EB9CB @ 2019-08-15T20:12:26.437763556Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.375) BA{16:_x_____x__xxx_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.729] Added to precommit                           module=consensus vote="Vote{5:7D9C04365FD6 2/00/2(Precommit) 7F1DBFB66757 6EB7F1CF1C71 @ 2019-08-15T20:12:26.459979245Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.4375) BA{16:_x___x_x__xxx_x_} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.736] Added to precommit                           module=consensus vote="Vote{15:FE09E79FE9BF 2/00/2(Precommit) 7F1DBFB66757 0B66C71F265E @ 2019-08-15T20:12:26.504853391Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.5) BA{16:_x___x_x__xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.740] Added to precommit                           module=consensus vote="Vote{8:9326B163175D 2/00/2(Precommit) 7F1DBFB66757 A85BC92045C9 @ 2019-08-15T20:12:26.426958348Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.5625) BA{16:_x___x_xx_xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.741] Added to precommit                           module=consensus vote="Vote{0:0F8C976C3CFF 2/00/2(Precommit) 7F1DBFB66757 1558D32CAF32 @ 2019-08-15T20:12:26.474819669Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:<nil>(0.625) BA{16:xx___x_xx_xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.805] Added to precommit                           module=consensus vote="Vote{2:166A3531DC3F 2/00/2(Precommit) 7F1DBFB66757 3210AFE3BE77 @ 2019-08-15T20:12:26.551359589Z}" precommits="VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.6875) BA{16:xxx__x_xx_xxx_xx} map[]}"
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.805] enterCommit(2/0). Current: 2/0/RoundStepPrecommit module=consensus height=2 commitRound=0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.805] Commit is for locked block. Set ProposalBlock=LockedBlock module=consensus height=2 commitRound=0 blockHash=7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.808] Finalizing commit of block with 0 txs        module=consensus height=2 hash=7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF root=0000000000000000
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.808] Block{
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Header{
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Version:        {10 1}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: ChainID:        testnet_16validators
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Height:         2
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Time:           2019-08-15 20:12:24.538105175 +0000 UTC
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: NumTxs:         0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: TotalTxs:       0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: LastBlockID:    36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: LastCommit:     44036FE47C673DF7BF88A3FDB54CF18A2D019B0B80384E54CA4406F409A80E07
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Data:
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Validators:     30F88B8557B8827C9CBE408EB5992ABB1B7411C37672BBAAED37BF3626030825
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: NextValidators: 30F88B8557B8827C9CBE408EB5992ABB1B7411C37672BBAAED37BF3626030825
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: App:            0000000000000000
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Consensus:       048091BC7DDC283F77BFBF91D73C44DA58C3DF8A9CBC867405D8B7F3DAADA22F
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Results:
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Evidence:
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Proposer:       141681FA3ABF83FED34CF107628BE3BC1AFDA4FA
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: }#7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Data{
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: }#
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: EvidenceData{
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: }#
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Commit{
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: BlockID:    36DC511E6C9D92666B3FE6710CA75322140A04EE3137D722F5DEDB5B6C0E0A08:1:441A2FB490A1
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Precommits:
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{0:0F8C976C3CFF 1/00/2(Precommit) 36DC511E6C9D AD5DB39B2BB2 @ 2019-08-15T20:12:24.538105175Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{1:141681FA3ABF 1/00/2(Precommit) 36DC511E6C9D 8F58547E0DEF @ 2019-08-15T20:12:24.5380165Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{2:166A3531DC3F 1/00/2(Precommit) 36DC511E6C9D 583679305ADE @ 2019-08-15T20:12:24.438334945Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: nil-Vote
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: nil-Vote
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{5:7D9C04365FD6 1/00/2(Precommit) 36DC511E6C9D 788D9290FC05 @ 2019-08-15T20:12:24.581342605Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{6:88F98028DB5C 1/00/2(Precommit) 36DC511E6C9D 1BCABB536E94 @ 2019-08-15T20:12:24.946936581Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{7:921F2EB5AF3A 1/00/2(Precommit) 36DC511E6C9D B3260BC1A094 @ 2019-08-15T20:12:24.486767186Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{8:9326B163175D 1/00/2(Precommit) 36DC511E6C9D E98F8D0EE97E @ 2019-08-15T20:12:24.29697625Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: nil-Vote
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{10:B0D5A61F3DE6 1/00/2(Precommit) 36DC511E6C9D 2BB1D336A392 @ 2019-08-15T20:12:24.491954318Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{11:B6C9C003C186 1/00/2(Precommit) 36DC511E6C9D 206F251DB80D @ 2019-08-15T20:12:24.581210404Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{12:DAD34138EA8D 1/00/2(Precommit) 36DC511E6C9D A4CE82230FDD @ 2019-08-15T20:12:24.661469016Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: nil-Vote
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{14:F00103649296 1/00/2(Precommit) 36DC511E6C9D B2F950BDD23D @ 2019-08-15T20:12:24.674524295Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: Vote{15:FE09E79FE9BF 1/00/2(Precommit) 36DC511E6C9D CEFCCCC411F5 @ 2019-08-15T20:12:24.538298012Z}
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: }#44036FE47C673DF7BF88A3FDB54CF18A2D019B0B80384E54CA4406F409A80E07
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: }#7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF module=consensus
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.817] Executed block                               module=state height=2 validTxs=0 invalidTxs=0
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.817] Committed state                              module=state height=2 txs=0 appHash=0000000000000000
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.819] Indexed block                                module=txindex height=2
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.820] Added to lastPrecommits: VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.75) BA{16:xxx__xxxx_xxx_xx} map[]} module=consensus
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.845] Dialing peer                                 module=p2p address=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.847] Added to lastPrecommits: VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.8125) BA{16:xxx__xxxx_xxxxxx} map[]} module=consensus
Aug 15 20:12:26 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:26.929] Added to lastPrecommits: VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.875) BA{16:xxx_xxxxx_xxxxxx} map[]} module=consensus
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.102] Added to lastPrecommits: VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(0.9375) BA{16:xxxxxxxxx_xxxxxx} map[]} module=consensus
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.278] Added to lastPrecommits: VoteSet{H:2 R:0 T:2 +2/3:7F1DBFB667573EC87336C628D113A62ED43EBB7B8ABB4F7375FBA6FCCEF59CDF:1:F581A0A85EEB(1) BA{16:xxxxxxxxxxxxxxxx} map[]} module=consensus
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.278] Need to set a buffer and log message here for sanity. module=consensus height=3 round=0 startTime=2019-08-15T20:12:27.805198962Z now=2019-08-15T20:12:27.278932121Z
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.278] enterNewRound(3/0). Current: 3/0/RoundStepNewHeight module=consensus height=3 round=0
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.403] Starting Peer                                module=p2p peer=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656 impl="Peer{MConn{3.16.152.6:26656} cc3cc1621692e1aeb7eec4440536222f462fbd6b out}"
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.403] Starting MConnection                         module=p2p peer=cc3cc1621692e1aeb7eec4440536222f462fbd6b@3.16.152.6:26656 impl=MConn{3.16.152.6:26656}
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.403] Added peer                                   module=p2p peer="Peer{MConn{3.16.152.6:26656} cc3cc1621692e1aeb7eec4440536222f462fbd6b out}"
Aug 15 20:12:27 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:27.805] Timed out                                    module=consensus dur=985.49215ms height=3 round=0 step=RoundStepNewHeight
Aug 15 20:12:29 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:29.094] Dialing peer                                 module=p2p address=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656
Aug 15 20:12:29 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:29.543] Starting Peer                                module=p2p peer=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656 impl="Peer{MConn{54.206.95.67:26656} 6c2436761bb3defc1c7bdf59857e9575e0e06b79 out}"
Aug 15 20:12:29 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:29.544] Starting MConnection                         module=p2p peer=6c2436761bb3defc1c7bdf59857e9575e0e06b79@54.206.95.67:26656 impl=MConn{54.206.95.67:26656}
Aug 15 20:12:29 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:29.544] Added peer                                   module=p2p peer="Peer{MConn{54.206.95.67:26656} 6c2436761bb3defc1c7bdf59857e9575e0e06b79 out}"
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=5 numDialing=0 numToDial=4
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.461] Will dial address                            module=pex addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:26656
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.461] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{18.197.147.159:55398} 29266701a727a1058055d6c551d8fff139f5bb59 in}"
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.461] Dialing peer                                 module=p2p address=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:26656
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.463] Remove address from book                     module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:57142
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.463] Add our address to book                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:57142
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.463] Inbound Peer rejected                        module=p2p err="self ID<1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4>" numPeers=11
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:50.463] Add our address to book                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:26656
Aug 15 20:12:50 ec2-13-125-216-77 tendermint: E[2019-08-15|20:12:50.463] dialing failed (attempts: 1): self ID<1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4> module=pex addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@13.125.216.77:26656
Aug 15 20:12:54 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:54.350] Starting Peer                                module=p2p peer=56c10cc1d4cd68f900745f7e86b87efac37963af@18.144.20.10:50404 impl="Peer{MConn{18.144.20.10:50404} 56c10cc1d4cd68f900745f7e86b87efac37963af in}"
Aug 15 20:12:54 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:54.350] Starting MConnection                         module=p2p peer=56c10cc1d4cd68f900745f7e86b87efac37963af@18.144.20.10:50404 impl=MConn{18.144.20.10:50404}
Aug 15 20:12:54 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:54.350] Added peer                                   module=p2p peer="Peer{MConn{18.144.20.10:50404} 56c10cc1d4cd68f900745f7e86b87efac37963af in}"
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.038] Starting Peer                                module=p2p peer=11ac33c8eb5f80ad7326ac77883a8ba1f549f6fa@54.215.221.2:59638 impl="Peer{MConn{54.215.221.2:59638} 11ac33c8eb5f80ad7326ac77883a8ba1f549f6fa in}"
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.038] Starting MConnection                         module=p2p peer=11ac33c8eb5f80ad7326ac77883a8ba1f549f6fa@54.215.221.2:59638 impl=MConn{54.215.221.2:59638}
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.038] Added peer                                   module=p2p peer="Peer{MConn{54.215.221.2:59638} 11ac33c8eb5f80ad7326ac77883a8ba1f549f6fa in}"
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.908] Starting Peer                                module=p2p peer=d2d496b1dc81b22602fb3298220daa21b418fa03@18.203.156.130:50122 impl="Peer{MConn{18.203.156.130:50122} d2d496b1dc81b22602fb3298220daa21b418fa03 in}"
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.908] Starting MConnection                         module=p2p peer=d2d496b1dc81b22602fb3298220daa21b418fa03@18.203.156.130:50122 impl=MConn{18.203.156.130:50122}
Aug 15 20:12:55 ec2-13-125-216-77 tendermint: I[2019-08-15|20:12:55.908] Added peer                                   module=p2p peer="Peer{MConn{18.203.156.130:50122} d2d496b1dc81b22602fb3298220daa21b418fa03 in}"
Aug 15 20:13:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:20.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=8 numDialing=0 numToDial=4
Aug 15 20:13:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:20.461] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{54.210.130.71:55178} b68a3263fbc892cd4916723bb195e459eaac5b24 in}"
Aug 15 20:13:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:20.461] No addresses to dial. Falling back to seeds  module=pex
Aug 15 20:13:20 ec2-13-125-216-77 tendermint: E[2019-08-15|20:13:20.461] Couldn't connect to any seeds                module=p2p
Aug 15 20:13:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:25.868] Starting Peer                                module=p2p peer=cb765a2e1aeb432439a2ae9fa7db7407fa566192@34.243.90.94:36520 impl="Peer{MConn{34.243.90.94:36520} cb765a2e1aeb432439a2ae9fa7db7407fa566192 in}"
Aug 15 20:13:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:25.868] Starting MConnection                         module=p2p peer=cb765a2e1aeb432439a2ae9fa7db7407fa566192@34.243.90.94:36520 impl=MConn{34.243.90.94:36520}
Aug 15 20:13:25 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:25.868] Added peer                                   module=p2p peer="Peer{MConn{34.243.90.94:36520} cb765a2e1aeb432439a2ae9fa7db7407fa566192 in}"
Aug 15 20:13:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:50.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=9 numDialing=0 numToDial=4
Aug 15 20:13:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:50.461] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{54.210.130.71:55178} b68a3263fbc892cd4916723bb195e459eaac5b24 in}"
Aug 15 20:13:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:13:50.461] No addresses to dial. Falling back to seeds  module=pex
Aug 15 20:13:50 ec2-13-125-216-77 tendermint: E[2019-08-15|20:13:50.461] Couldn't connect to any seeds                module=p2p
Aug 15 20:14:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:20.460] Saving AddrBook to file                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json size=15
Aug 15 20:14:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:20.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=9 numDialing=0 numToDial=4
Aug 15 20:14:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:20.462] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{172.31.46.25:34698} 7b80227db30e5374f901e179a51d031e2d60eccb in}"
Aug 15 20:14:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:20.462] No addresses to dial. Falling back to seeds  module=pex
Aug 15 20:14:20 ec2-13-125-216-77 tendermint: E[2019-08-15|20:14:20.462] Couldn't connect to any seeds                module=p2p
Aug 15 20:14:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:50.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=9 numDialing=0 numToDial=4
Aug 15 20:14:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:50.461] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{18.203.156.130:50122} d2d496b1dc81b22602fb3298220daa21b418fa03 in}"
Aug 15 20:14:50 ec2-13-125-216-77 tendermint: I[2019-08-15|20:14:50.461] No addresses to dial. Falling back to seeds  module=pex
Aug 15 20:14:50 ec2-13-125-216-77 tendermint: E[2019-08-15|20:14:50.461] Couldn't connect to any seeds                module=p2p
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.461] Ensure peers                                 module=pex numOutPeers=6 numInPeers=9 numDialing=0 numToDial=4
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.461] Will dial address                            module=pex addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:26656
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.461] We need more addresses. Sending pexRequest to random peer module=pex peer="Peer{MConn{54.206.95.67:26656} 6c2436761bb3defc1c7bdf59857e9575e0e06b79 out}"
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.461] Dialing peer                                 module=p2p address=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:26656
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.462] Remove address from book                     module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:26656
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.462] Add our address to book                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:26656
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: E[2019-08-15|20:15:20.462] dialing failed (attempts: 1): self ID<1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4> module=pex addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:26656
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.462] Add our address to book                      module=p2p book=/home/tendermint/.tendermint/config/addrbook.json addr=1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4@172.31.46.40:41138
Aug 15 20:15:20 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:20.462] Inbound Peer rejected                        module=p2p err="self ID<1d7d6f4c3ffe1a6f5810875b4f06957b746d90b4>" numPeers=15
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.433] Added good transaction                       module=mempool tx=CA7490659312150F852577C273F7BADA3F07EEDC0636BB664E2F6B1E33AC02F8 res="&{CheckTx:gas_wanted:1 }" height=2 total=1
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.434] Added good transaction                       module=mempool tx=022B5C79C37742279F98D3BFB5B12B615B62DAA9815B5407ACF8FEA5316DD4A2 res="&{CheckTx:gas_wanted:1 }" height=2 total=2
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.434] Added good transaction                       module=mempool tx=AA2BCCA51326B0C849392EB29AF686A0A35F3915F26B78E07BB8569E972171F1 res="&{CheckTx:gas_wanted:1 }" height=2 total=3
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.434] Added good transaction                       module=mempool tx=A5619BFF93D9B6A6E2EB28949852E056C33102436EFDF778FF1D64B5455DDF20 res="&{CheckTx:gas_wanted:1 }" height=2 total=4
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.434] enterPropose(3/0). Current: 3/0/RoundStepNewRound module=consensus height=3 round=0
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.435] enterPropose: Not our turn to propose        module=consensus height=3 round=0 proposer=166A3531DC3F995F0087C4A9E4AB7D54EB51D8F4 privValidator="PrivValidator{DAD34138EA8D342AFFE33E3944ABD3A59DAEB82C LH:2, LR:0, LS:3}"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.435] Added good transaction                       module=mempool tx=F264A87E85BD0AC3EF25AB1012469474A187464944A3E6CF204F07A429C8A6E8 res="&{CheckTx:gas_wanted:1 }" height=2 total=5
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.436] Added good transaction                       module=mempool tx=44DF906A578330CD1585C5BBC8CBEA4361DB38CDA181D6890C8759384942E70B res="&{CheckTx:gas_wanted:1 }" height=2 total=6
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.436] Added good transaction                       module=mempool tx=3874CCF9506D902C096F11B8AAD5AD5B480307CDD50D04E6AC07A3052D52FE6F res="&{CheckTx:gas_wanted:1 }" height=2 total=7
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.436] Added good transaction                       module=mempool tx=132989C475E038C57ADD770091FC66C9DCEBE34C45D0A2B6A0F934724D880F1D res="&{CheckTx:gas_wanted:1 }" height=2 total=8
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.436] Added good transaction                       module=mempool tx=8FA961DEF26CC7D5159DA5EA09A268F69C18DCFD840A0760229A7EC156628F7F res="&{CheckTx:gas_wanted:1 }" height=2 total=9
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.437] Added good transaction                       module=mempool tx=7EBAA7FD77562EA499E7A3DA538F5190B5E6680DD875F1B225E974DB07F6D032 res="&{CheckTx:gas_wanted:1 }" height=2 total=10
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.437] Added good transaction                       module=mempool tx=1EE57B53F59558D35CE06B0AE03EEA4CA0E487AD1F4BACD801354620AFC8BEFA res="&{CheckTx:gas_wanted:1 }" height=2 total=11
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.437] Added good transaction                       module=mempool tx=775132F0C8CA08855D58CA4A6F52C6D1D2A19C16CB83FB571D9B2CA89780608D res="&{CheckTx:gas_wanted:1 }" height=2 total=12
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.437] Added good transaction                       module=mempool tx=EBC9D61C724BA13C06C959375708F7F85650DCFF8C48691D3D520A2EC8873776 res="&{CheckTx:gas_wanted:1 }" height=2 total=13
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.438] Added good transaction                       module=mempool tx=23F3F7C53A4C9C387D1DC8045CC2218B86B8438802B3440CF0F9BDA166393690 res="&{CheckTx:gas_wanted:1 }" height=2 total=14
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.438] Added good transaction                       module=mempool tx=C01B26C7E81EE11816A9860A4E394ADC1D3841371B7DDF181E8D2D1E188EB953 res="&{CheckTx:gas_wanted:1 }" height=2 total=15
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.438] Added good transaction                       module=mempool tx=F5D2380015C08FB659586869211FC19FBEF2DAADD480366C522A29232A5FCD1D res="&{CheckTx:gas_wanted:1 }" height=2 total=16
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.438] Added good transaction                       module=mempool tx=CE6B137F26E0E59557E9075ACD772231A5FB4F4DECD760140359698122E47F48 res="&{CheckTx:gas_wanted:1 }" height=2 total=17
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.439] Added good transaction                       module=mempool tx=59AF345FF40D1F8CD7A1693B57B5CF0576FE99A2914357213C48620B8A1C198F res="&{CheckTx:gas_wanted:1 }" height=2 total=18
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.439] Added good transaction                       module=mempool tx=C9D7562DDBF85D7A7EC0B169864765FBFE421F6EE1956E352A17F13F6565D2AB res="&{CheckTx:gas_wanted:1 }" height=2 total=19
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.439] Added good transaction                       module=mempool tx=7734C0B205D55C9DC0C665A77CA57974954D9304CD977269C8883095469CCBFA res="&{CheckTx:gas_wanted:1 }" height=2 total=20
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.439] Added good transaction                       module=mempool tx=2824736EB7C5BAC1BA6F28285D0DA2FC1DD714C8317BD49223F41FB0989C3C97 res="&{CheckTx:gas_wanted:1 }" height=2 total=21
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=0C6C7EDF1C7E77E39934275C29ED16354DF5018AAF3B4CC9FF319A5C61065D3C res="&{CheckTx:gas_wanted:1 }" height=2 total=22
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=91813C50CCAA438E2B1A6000C253BBDFA1C739BD0F0A5E753AC9EE9C513EC43A res="&{CheckTx:gas_wanted:1 }" height=2 total=23
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=E6678EFB988CFB09FCA3B8B1575F5C40BD60B9ECE39C5CF31AD61D37B007469A res="&{CheckTx:gas_wanted:1 }" height=2 total=24
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=BF8BE4C6C68B809ED033B07C937106D85B2A2F59275E4ED9CF8B804D81A1EEDA res="&{CheckTx:gas_wanted:1 }" height=2 total=25
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=1A1A23F2BCFA824758B6E83AAF4D8D55E91BD276E961F31B53ADA884B418261E res="&{CheckTx:gas_wanted:1 }" height=2 total=26
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=63A045199907EDC896FE8B6E777288483DF3A101B19B6DAAD89F778FA7E6BD1D res="&{CheckTx:gas_wanted:1 }" height=2 total=27
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=8426E8B48CDAD7E24ED4AAA406526BA800F4A598280D9F02CBC42097ACF02A97 res="&{CheckTx:gas_wanted:1 }" height=2 total=28
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=06253583FA437CD31F87C53DF18703E111E9ED9BB1D28BA104CC91A375F6012E res="&{CheckTx:gas_wanted:1 }" height=2 total=29
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=A1732E8BCA96888A3BEABEFCE52995262B31BB262DE76B45F3005F5B9E685555 res="&{CheckTx:gas_wanted:1 }" height=2 total=30
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.440] Added good transaction                       module=mempool tx=18170E1E6018A126A34178F6C9A88FCAA672870E48C6AC89A051049947A49C95 res="&{CheckTx:gas_wanted:1 }" height=2 total=31
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=20F12BA7AF5E45BB96184D69B3CCB1B038D59444B17DB5302313A5AD76AD3AD3 res="&{CheckTx:gas_wanted:1 }" height=2 total=32
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=C768E4CD18C511CDEFB78FAD54C355F6DB6FF8F5341FA9E87AF58D6524C548E6 res="&{CheckTx:gas_wanted:1 }" height=2 total=33
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=E9E7DD55E612C45550EB3C04AA3B3E3AA31639BF7EF2421764BB33D5197300C3 res="&{CheckTx:gas_wanted:1 }" height=2 total=34
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=9F7DA6BC4EF915E66D0D90380183B4E261DF8EA091E2F3157848296A08B74C9F res="&{CheckTx:gas_wanted:1 }" height=2 total=35
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=3EA451071F0B8E4A814AAEB18ADDFA2CBF68FA54023148433FCB25220AED4A3A res="&{CheckTx:gas_wanted:1 }" height=2 total=36
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=B358B777EB3FBDE39DE59ACDF51F3F7C2CB8687B1377E012DFEA397D9782DFB0 res="&{CheckTx:gas_wanted:1 }" height=2 total=37
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=9DC87D179C451C92AEFB0B1DCE51495DECC9DA3082060468DAC529A23075D860 res="&{CheckTx:gas_wanted:1 }" height=2 total=38
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=5847219EBBE44FC4EB99AE787AD7B332892E534CA50D48E38C382C9C0F9FB269 res="&{CheckTx:gas_wanted:1 }" height=2 total=39
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=23F3C1DC2C8B97D930949CA052943C2731498FBB40E4753A1A0710D95A144C42 res="&{CheckTx:gas_wanted:1 }" height=2 total=40
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=802B02E8A9094E2BA46C4EAAB79F41220F0D4E46AD33973F43223180243BDB3B res="&{CheckTx:gas_wanted:1 }" height=2 total=41
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=FBABB9CE864A4F82CFBA6B81F8473DDEFD34EDCBE1183BB9D92057F230556340 res="&{CheckTx:gas_wanted:1 }" height=2 total=42
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=5D88AE1FAB68C031857D5B45BEBB212BF100573FA4535E32D7FE2FCFFEA3F8F3 res="&{CheckTx:gas_wanted:1 }" height=2 total=43
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=7D85FA7B3859188B7D0DE9A8DF6AF1E90F0071167425910A29C7833BEB1FDD63 res="&{CheckTx:gas_wanted:1 }" height=2 total=44
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=7BBB49500E43C55575B388ED90B5031BF1B99C4BF4535ECE31477667592D0F73 res="&{CheckTx:gas_wanted:1 }" height=2 total=45
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=AF10652F15E0E145554DA3077AC4F2B09918706A0003D4911AD1EF127A722A9E res="&{CheckTx:gas_wanted:1 }" height=2 total=46
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=3D3BE52E3BE0B641DB6EFC9E34DD34FA6804AC1A139B25B0277161EB3D01717D res="&{CheckTx:gas_wanted:1 }" height=2 total=47
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=068935E9095770126038196E170C5D4832114FD9225DCA3C49E52D04B83EE611 res="&{CheckTx:gas_wanted:1 }" height=2 total=48
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=6275B9732EF9DBD4CCA32160CDCE83B24F7D0808727D2BD6D7E3001CEFE3BA51 res="&{CheckTx:gas_wanted:1 }" height=2 total=49
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=6260336C27326889C203774485BC24863B47121F92EB9908772EE2D40AB29F44 res="&{CheckTx:gas_wanted:1 }" height=2 total=50
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.441] Added good transaction                       module=mempool tx=ED0EF1A84CBC72295360ACB73A10D7A7617F21726363D60C4CEA5823122CC619 res="&{CheckTx:gas_wanted:1 }" height=2 total=51
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=CA7490659312150F852577C273F7BADA3F07EEDC0636BB664E2F6B1E33AC02F8 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=022B5C79C37742279F98D3BFB5B12B615B62DAA9815B5407ACF8FEA5316DD4A2 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=AA2BCCA51326B0C849392EB29AF686A0A35F3915F26B78E07BB8569E972171F1 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=A5619BFF93D9B6A6E2EB28949852E056C33102436EFDF778FF1D64B5455DDF20 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=F264A87E85BD0AC3EF25AB1012469474A187464944A3E6CF204F07A429C8A6E8 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=44DF906A578330CD1585C5BBC8CBEA4361DB38CDA181D6890C8759384942E70B err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=3874CCF9506D902C096F11B8AAD5AD5B480307CDD50D04E6AC07A3052D52FE6F err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=132989C475E038C57ADD770091FC66C9DCEBE34C45D0A2B6A0F934724D880F1D err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=8FA961DEF26CC7D5159DA5EA09A268F69C18DCFD840A0760229A7EC156628F7F err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=7EBAA7FD77562EA499E7A3DA538F5190B5E6680DD875F1B225E974DB07F6D032 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=1EE57B53F59558D35CE06B0AE03EEA4CA0E487AD1F4BACD801354620AFC8BEFA err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=775132F0C8CA08855D58CA4A6F52C6D1D2A19C16CB83FB571D9B2CA89780608D err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=EBC9D61C724BA13C06C959375708F7F85650DCFF8C48691D3D520A2EC8873776 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=23F3F7C53A4C9C387D1DC8045CC2218B86B8438802B3440CF0F9BDA166393690 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=C01B26C7E81EE11816A9860A4E394ADC1D3841371B7DDF181E8D2D1E188EB953 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=F5D2380015C08FB659586869211FC19FBEF2DAADD480366C522A29232A5FCD1D err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=CE6B137F26E0E59557E9075ACD772231A5FB4F4DECD760140359698122E47F48 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=59AF345FF40D1F8CD7A1693B57B5CF0576FE99A2914357213C48620B8A1C198F err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=C9D7562DDBF85D7A7EC0B169864765FBFE421F6EE1956E352A17F13F6565D2AB err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=7734C0B205D55C9DC0C665A77CA57974954D9304CD977269C8883095469CCBFA err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=2824736EB7C5BAC1BA6F28285D0DA2FC1DD714C8317BD49223F41FB0989C3C97 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=0C6C7EDF1C7E77E39934275C29ED16354DF5018AAF3B4CC9FF319A5C61065D3C err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=91813C50CCAA438E2B1A6000C253BBDFA1C739BD0F0A5E753AC9EE9C513EC43A err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.534] Could not check tx                           module=mempool tx=E6678EFB988CFB09FCA3B8B1575F5C40BD60B9ECE39C5CF31AD61D37B007469A err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=BF8BE4C6C68B809ED033B07C937106D85B2A2F59275E4ED9CF8B804D81A1EEDA err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=1A1A23F2BCFA824758B6E83AAF4D8D55E91BD276E961F31B53ADA884B418261E err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=63A045199907EDC896FE8B6E777288483DF3A101B19B6DAAD89F778FA7E6BD1D err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=8426E8B48CDAD7E24ED4AAA406526BA800F4A598280D9F02CBC42097ACF02A97 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=06253583FA437CD31F87C53DF18703E111E9ED9BB1D28BA104CC91A375F6012E err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=A1732E8BCA96888A3BEABEFCE52995262B31BB262DE76B45F3005F5B9E685555 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=18170E1E6018A126A34178F6C9A88FCAA672870E48C6AC89A051049947A49C95 err="Tx already exists in cache"
Aug 15 20:15:32 ec2-13-125-216-77 tendermint: I[2019-08-15|20:15:32.535] Could not check tx                           module=mempool tx=20F12BA7AF5E45BB96184D69B3CCB1B038D59444B17DB5302313A5AD76AD3AD3 err="Tx already exists in cache"
...

@thanethomson
Copy link
Author

thanethomson commented Aug 15, 2019

Further on in the logs, the mempool's just full, so no further transactions are allowed:

Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=2F791AB5E9881FA06CBE6387C3FB8556D6C9CB85ECAFC2CED3489761ADCEB9D0 err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=EC5918C4AF3E2BAA8940DC2A214944D9BF5C10F03338A62D33F5A3F2AB28BE5E err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=506F5FC6B15264A0ED14125F947D80118E5E500B9ABAC675EE7CF86FB2036908 err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=EC09F25951B07DB99249BA5296D809F5BF83722F86ECBB00DD5FA5034C632FF6 err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=C9A4B7009A3EB14271745AF3ADE451DE9EE3C3B9C9122B43F632F084EFE87ADB err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=1FB0535A6BF8BD7083545D1F4DCE02CD8162C2BDF790F3DFC1105D0AC610AD4B err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=1CD7B15743FDCB0E6F191FEC4214665E761BA63D8C9E1E3CA6AC3615A6EA891F err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=C4A414B056D502CFEFBE5F8C1CECCC94A7361D460DCFE195F4FC91FC0E708E8F err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"
Aug 15 20:29:06 ec2-13-125-216-77 tendermint: I[2019-08-15|20:29:06.182] Could not check tx                           module=mempool tx=220510DF383D29C4EBE7CAD0A5EA13A1A64F2A45F29BF7C45ECC22D80C263ABD err="mempool is full: number of txs 50000 (max: 50000), total txs bytes 10000000 (max: 1073741824)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment