Update CLI test string args

This commit is contained in:
Matt Bell 2017-01-03 19:26:20 -08:00
parent cd6fa3018c
commit 4bb65366f4
2 changed files with 10 additions and 10 deletions

View File

@ -1,10 +1,10 @@
echo hello echo hello
info info
commit commit
append_tx abc append_tx "abc"
info info
commit commit
query abc query "abc"
append_tx def=xyz append_tx "def=xyz"
commit commit
query def query "def"

View File

@ -7,7 +7,7 @@
> commit > commit
-> data: 0x -> data: 0x
> append_tx abc > append_tx "abc"
-> code: OK -> code: OK
> info > info
@ -16,17 +16,17 @@
> commit > commit
-> data: 0x750502FC7E84BBD788ED589624F06CFA871845D1 -> data: 0x750502FC7E84BBD788ED589624F06CFA871845D1
> query abc > query "abc"
-> code: OK -> code: OK
-> data: {"index":0,"value":"abc","exists":true} -> data: {"index":0,"value":"abc","valueHex":"616263","exists":true}
> append_tx def=xyz > append_tx "def=xyz"
-> code: OK -> code: OK
> commit > commit
-> data: 0x76393B8A182E450286B0694C629ECB51B286EFD5 -> data: 0x76393B8A182E450286B0694C629ECB51B286EFD5
> query def > query "def"
-> code: OK -> code: OK
-> data: {"index":1,"value":"xyz","exists":true} -> data: {"index":1,"value":"xyz","valueHex":"78797a","exists":true}