Modify Ledger strings

This commit is contained in:
Julian Yap 2018-06-24 16:35:13 -10:00
parent 502e08dbf4
commit 3355e8130c

View file

@ -143,12 +143,12 @@ func (w *ledgerWallet) Status() string {
return "Closed" return "Closed"
} }
if w.browser { if w.browser {
return "Ethereum app in browser mode" return "Ubiq app in browser mode"
} }
if w.offline() { 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. // offline returns whether the wallet and the Ethereum app is offline or not.