mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
keystore source display
This commit is contained in:
parent
0f008b8985
commit
c675e395db
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,15 @@
|
|||
package com.sparrowwallet.drongo.wallet;
|
||||
|
||||
public enum KeystoreSource {
|
||||
HW_USB, HW_AIRGAPPED, SW_SEED, SW_WATCH;
|
||||
HW_USB("Connected Hardware Wallet"), HW_AIRGAPPED("Airgapped Hardware Wallet"), SW_SEED("Software Wallet"), SW_WATCH("Watch Only Wallet");
|
||||
|
||||
private String displayName;
|
||||
|
||||
KeystoreSource(String displayName) {
|
||||
this.displayName = displayName;
|
||||
}
|
||||
|
||||
public String getDisplayName() {
|
||||
return displayName;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue