Custom address for ABCI example app
marcofavorito opened this issue · 1 comments
marcofavorito commented
FEATURE REQUEST
Now, if I'm not wrong, the listen address of example applications (i.e. abci-cli dummy
and abci-cli counter
) is equal to the default (tcp://0.0.0.0:46658
).
Why don't make it settable from command line?
zramsay commented
you should be able to use either the --addr
flag or --address
flag:
$ abci-cli counter -h
ABCI demo example
Usage:
abci-cli counter [flags]
Flags:
--addr string Listen address (default "tcp://0.0.0.0:46658")
-h, --help help for counter
--serial Enforce incrementing (serial) transactions
Global Flags:
--abci string Either socket or grpc (default "socket")
--address string Address of application socket (default "tcp://0.0.0.0:46658")
--log_level string Set the logger level (default "debug")
-v, --verbose Print the command and results as if it were a console session