From 4b87d9567bb45b872b64613f9d8bafaf65882602 Mon Sep 17 00:00:00 2001 From: avive Date: Wed, 30 Jun 2021 13:46:50 +0300 Subject: [PATCH] Update suggestor text --- repl/repl.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/repl/repl.go b/repl/repl.go index e55e427..aa3be60 100644 --- a/repl/repl.go +++ b/repl/repl.go @@ -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 @@ -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