Skip to content

Commit

Permalink
Minor updates to instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Olshansk committed Nov 28, 2022
1 parent cab6408 commit caf6a0b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions iter_3_demo_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ make db_cli_node # connect to the default node 1
Query the DB:

```bash
show search_path;
select height, hash from block;
select * from account;
select * from pool;
Expand All @@ -49,6 +50,7 @@ psqlSchema=node3 make db_cli_node # connect to node 3
Query the DB:
```bash
show search_path;
select height, hash from block;
select * from account;
select * from pool;
Expand All @@ -57,11 +59,11 @@ select * from pool;
## Trigger command via client (shell 5)
```bash
go run app/client/_.go # show all the commands
go run app/client/*.go # show all the commands

go run app/client/_.go --path_to_private_key_file=/Users/olshansky/workspace/pocket/pocket/pkeys/node1.json Account Send 6f66574e1f50f0ef72dff748c3f11b9e0e89d32a 67eb3f0a50ae459fecf666be0e93176e92441317 1000
go run app/client/*.go --path_to_private_key_file=/Users/olshansky/workspace/pocket/pocket/pkeys/node1.json Account Send 6f66574e1f50f0ef72dff748c3f11b9e0e89d32a 67eb3f0a50ae459fecf666be0e93176e92441317 1000

go run app/client/_.go --path_to_private_key_file=/Users/olshansky/workspace/pocket/pocket/pkeys/node2.json Account Send 67eb3f0a50ae459fecf666be0e93176e92441317 6f66574e1f50f0ef72dff748c3f11b9e0e89d32a 1000
go run app/client/*.go --path_to_private_key_file=/Users/olshansky/workspace/pocket/pocket/pkeys/node2.json Account Send 67eb3f0a50ae459fecf666be0e93176e92441317 6f66574e1f50f0ef72dff748c3f11b9e0e89d32a 1000
```
## Swagger UI (shell 6)
Expand Down

0 comments on commit caf6a0b

Please sign in to comment.