From 3355e8130c9e3c463587c465723fe934ecf83372 Mon Sep 17 00:00:00 2001 From: Julian Yap Date: Sun, 24 Jun 2018 16:35:13 -1000 Subject: [PATCH] Modify Ledger strings --- accounts/usbwallet/ledger_wallet.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/accounts/usbwallet/ledger_wallet.go b/accounts/usbwallet/ledger_wallet.go index f483d9788c..a91ef56405 100644 --- a/accounts/usbwallet/ledger_wallet.go +++ b/accounts/usbwallet/ledger_wallet.go @@ -143,12 +143,12 @@ func (w *ledgerWallet) Status() string { return "Closed" } if w.browser { - return "Ethereum app in browser mode" + return "Ubiq app in browser mode" } if w.offline() { - return "Ethereum app offline" + return "Ubiq app offline" } - return fmt.Sprintf("Ethereum app v%d.%d.%d online", w.version[0], w.version[1], w.version[2]) + return fmt.Sprintf("Ubiq app v%d.%d.%d online", w.version[0], w.version[1], w.version[2]) } // offline returns whether the wallet and the Ethereum app is offline or not.