Reputation: 90
I am new to hyperledger sawtooth,I am working on setting up sawtooth in aws using putty but validator and rest api failing to run.
Edited:The above problem is resolved. I run all the commands of Xo transaction family on Aws using putty,but I am getting this error sudo xo show my-game Error: No such game: my-game
Upvotes: 0
Views: 138
Reputation: 2345
The REST API failed. You can look in files /var/log/sawtooth/rest_api-debug.log
/var/log/sawtooth/rest_api-error.log
For more details on AWS and Sawtooth, see the app developer's guide (v1.2.1). EDIT: To answer you question about playing...
You have to both create players and create a game before you can start playing XO (tic-tac-toe). For example, to create players bob and alice, type:
sawtooth keygen bob
sawtooth keygen alice
To create a game called mygame as player jack, type:
xo create mygame --username jack
For more details, again see the docs (latest version).
Upvotes: 1