keystore source display

This commit is contained in:
Craig Raw 2020-05-11 11:37:25 +02:00
parent 0f008b8985
commit c675e395db

View file

@ -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;
}
}