Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/v1 wallet migration #166

Merged
merged 14 commits into from
Apr 20, 2022
11 changes: 11 additions & 0 deletions core/commands/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,17 @@ func TestCommands(t *testing.T) {
"/bttc/wbtt2btt",
"/bttc/send-btt-to",
"/bttc/send-wbtt-to",
"/wallet/discovery",
"/wallet/balance",
"/wallet/init",
"/wallet",
"/wallet/transfer",
"/wallet/import",
"/wallet/generate_key",
"/wallet/deposit",
"/wallet/transactions",
"/wallet/keys",
"/wallet/withdraw",
}

cmdSet := make(map[string]struct{})
Expand Down
1 change: 1 addition & 0 deletions core/commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ var rootSubcommands = map[string]*cmds.Command{
"settlement": settlement.SettlementCmd,
//"update": ExternalBinary(),
"network": NetworkCmd,
"wallet": WalletCmd,
}

// RootRO is the readonly version of Root
Expand Down
Loading