Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

Commit

Permalink
Merge pull request #37 from spacemeshos/wallet-entropy
Browse files Browse the repository at this point in the history
Update suggester texts
  • Loading branch information
avive authored Jun 30, 2021
2 parents b6bd79b + 4b87d95 commit 66c7f08
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions repl/repl.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ type Client interface {

func (r *repl) initializeCommands() {
firstStageCommands := []command{
{commandStateRoot, "wallet", commandStateWallet, "wallet related commands", nil},
{commandStateRoot, "state", commandStateState, "global state commands", nil},
{commandStateRoot, "status", commandStateStatus, "status related commands", nil},
{commandStateRoot, "mesh", commandStateMesh, "mesh data", nil},
{commandStateRoot, "smesher", commandStateMesh, "smesher related commands", nil},
{commandStateRoot, "pos", commandStatePOS, "proof of spacetime setup related commands", nil},
{commandStateRoot, "dbg", commandStateDBG, "dbg commands", nil},
{commandStateRoot, "quit", commandStateLeaf, "Quit this app", r.quit},
{commandStateRoot, "wallet", commandStateWallet, "Wallet related commands", nil},
{commandStateRoot, "state", commandStateState, "Global state commands", nil},
{commandStateRoot, "status", commandStateStatus, "Status commands", nil},
{commandStateRoot, "mesh", commandStateMesh, "Mesh data", nil},
{commandStateRoot, "smesher", commandStateMesh, "Smesher commands", nil},
{commandStateRoot, "pos", commandStatePOS, "Proof of spacetime commands", nil},
{commandStateRoot, "dbg", commandStateDBG, "Debugging commands", nil},
{commandStateRoot, "quit", commandStateLeaf, "Quit app", r.quit},
}
accountCommands := []command{
// wallets
Expand All @@ -125,7 +125,7 @@ func (r *repl) initializeCommands() {
}
if r.clientOpen {
firstStageCommands = append(firstStageCommands,
command{commandStateRoot, "account", commandStateAccount, "account related commands", nil})
command{commandStateRoot, "account", commandStateAccount, "Wallet's accounts commands", nil})

accountCommands = []command{
// local wallet account commands
Expand Down

0 comments on commit 66c7f08

Please sign in to comment.