Closed nuwanwre closed 4 years ago
I will update the IsEmptyCell
-> isEmptyCell
occurrences for the tutorials, and push one more commit. For 1, is it okay if I leave it as it in the current state of this PR? I feel like it's better if you make the additional changes since you have the original idea of how the tutorial should flow.
Updated the PR!
Thanks for the tutorials!
A couple of revisions to the tictactoe tutorial.
Adding the creation of smart contract account
tictactoe
. In this tutorial, the latter cleos commands assume that the developer has deployed the smart contract under the accounttictactoe
. But, the preceding section instructs the developer to deploy the smart constract under the account ofhost
. To lessen the confusion, I've added another create account section fortictactoe
smart contract, and updated the relevant contract deployment to be undertictactoe
. This should also address #305.Updated sample code on the doc In both tutorials for Single Node and Testnet, the code samples for
tictactoe.hpp
has the class name and the constructor asTicTacToe
. But the header file follows the naming oftictactoe
. To address this issue, the in the code samples, the class name and the constructor was updated fromTicTacToe
->tictactoe
, as per reference here. In addition, addressed some changes mentioned in #308.@halsaphi, would like to get some feedback on 1. since I don't want the revisions to deviate from the original direction you were planning for the tutorial. Thanks!