From e741dad5d982180ede94cec42426cac053c270c1 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Mon, 30 Sep 2019 12:33:35 -0700 Subject: [PATCH] Pluralize Addresses. Fixes #4 --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index 92fd941..87738ac 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -383,7 +383,7 @@ pub fn get_commands() -> Box>> { map.insert("rescan".to_string(), Box::new(RescanCommand{})); map.insert("help".to_string(), Box::new(HelpCommand{})); map.insert("balance".to_string(), Box::new(BalanceCommand{})); - map.insert("address".to_string(), Box::new(AddressCommand{})); + map.insert("addresses".to_string(), Box::new(AddressCommand{})); map.insert("export".to_string(), Box::new(ExportCommand{})); map.insert("info".to_string(), Box::new(InfoCommand{})); map.insert("send".to_string(), Box::new(SendCommand{}));