You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
446 B

  1. > echo hello
  2. -> data: hello
  3. > info
  4. -> data: {"size":0}
  5. > commit
  6. -> data: 0x
  7. > append_tx abc
  8. -> code: OK
  9. > info
  10. -> data: {"size":1}
  11. > commit
  12. -> data: 0x750502FC7E84BBD788ED589624F06CFA871845D1
  13. > query abc
  14. -> code: OK
  15. -> data: {"index":0,"value":"abc","exists":true}
  16. > append_tx def=xyz
  17. -> code: OK
  18. > commit
  19. -> data: 0x76393B8A182E450286B0694C629ECB51B286EFD5
  20. > query def
  21. -> code: OK
  22. -> data: {"index":1,"value":"xyz","exists":true}