Files
tendermint/abci/tests/test_cli/ex1.abci.out

52 lines
696 B
Plaintext
Raw Normal View History

2016-07-23 18:54:58 -04:00
> echo hello
2017-10-23 19:54:38 -04:00
-> code: OK
2016-12-06 03:57:09 -08:00
-> data: hello
2017-10-23 19:54:38 -04:00
-> data.hex: 0x68656C6C6F
2016-07-23 18:54:58 -04:00
> info
2017-10-23 19:54:38 -04:00
-> code: OK
2016-12-06 03:57:09 -08:00
-> data: {"size":0}
2017-10-23 19:54:38 -04:00
-> data.hex: 0x7B2273697A65223A307D
2016-07-23 18:54:58 -04:00
> commit
2017-10-23 19:54:38 -04:00
-> code: OK
2018-05-25 16:18:33 -04:00
-> data.hex: 0x0000000000000000
2016-07-23 18:54:58 -04:00
2017-01-12 15:27:08 -05:00
> deliver_tx "abc"
2017-10-23 19:54:38 -04:00
-> code: OK
2016-07-23 18:54:58 -04:00
> info
2017-10-23 19:54:38 -04:00
-> code: OK
2016-12-06 03:57:09 -08:00
-> data: {"size":1}
2017-10-23 19:54:38 -04:00
-> data.hex: 0x7B2273697A65223A317D
2016-07-23 18:54:58 -04:00
> commit
2017-10-23 19:54:38 -04:00
-> code: OK
2018-05-25 16:18:33 -04:00
-> data.hex: 0x0200000000000000
2016-07-23 18:54:58 -04:00
2017-01-03 19:26:20 -08:00
> query "abc"
2017-10-23 19:54:38 -04:00
-> code: OK
2017-01-27 22:27:32 -08:00
-> log: exists
-> height: 0
-> key: abc
-> key.hex: 616263
2017-03-03 18:39:10 -05:00
-> value: abc
-> value.hex: 616263
2016-07-23 18:54:58 -04:00
2017-01-12 15:27:08 -05:00
> deliver_tx "def=xyz"
2017-10-23 19:54:38 -04:00
-> code: OK
2016-07-23 18:54:58 -04:00
> commit
2017-10-23 19:54:38 -04:00
-> code: OK
2018-05-25 16:18:33 -04:00
-> data.hex: 0x0400000000000000
2016-07-23 18:54:58 -04:00
2017-01-03 19:26:20 -08:00
> query "def"
2017-10-23 19:54:38 -04:00
-> code: OK
2017-01-27 22:27:32 -08:00
-> log: exists
-> height: 0
-> key: def
-> key.hex: 646566
2017-03-03 18:39:10 -05:00
-> value: xyz
-> value.hex: 78797A
2016-07-23 18:54:58 -04:00