flag.IntVar(&connections,"c",1,"Connections to keep open per endpoint")
flag.IntVar(&duration,"T",10,"Exit after the specified amount of time in seconds")
flag.IntVar(&txsRate,"r",1000,"Txs per second to send in a connection")
flag.IntVar(&txSize,"s",250,"The size of a transaction in bytes.")
flag.StringVar(&outputFormat,"output-format","plain","Output format: plain or json")
flag.StringVar(&broadcastTxMethod,"broadcast-tx-method","async","Broadcast method: async (no guarantees; fastest), sync (ensures tx is checked) or commit (ensures tx is checked and committed; slowest)")
flagSet.IntVar(&connections,"c",1,"Connections to keep open per endpoint")
flagSet.IntVar(&duration,"T",10,"Exit after the specified amount of time in seconds")
flagSet.IntVar(&txsRate,"r",1000,"Txs per second to send in a connection")
flagSet.IntVar(&txSize,"s",250,"The size of a transaction in bytes.")
flagSet.StringVar(&outputFormat,"output-format","plain","Output format: plain or json")
flagSet.StringVar(&broadcastTxMethod,"broadcast-tx-method","async","Broadcast method: async (no guarantees; fastest), sync (ensures tx is checked) or commit (ensures tx is checked and committed; slowest)")