Skip to content

Commit

Permalink
Merge pull request #467 from KeystoneHQ/forbid-cardano
Browse files Browse the repository at this point in the history
build: forbid cardano setup currently
  • Loading branch information
soralit authored Jun 26, 2023
2 parents 1cbc77a + 2c0514b commit 8882e9a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,10 @@ public void setupMnemonicWallet(String mnemonic) {
if (new WriteMnemonicCallable(mnemonic, password).call()) {
vaultId = new GetVaultIdCallable().call();
mRepository.clearDb();
ADASetupManager adaSetupManager = ADASetupManager.getInstance();
if (adaSetupManager.setupADARootKey("", password)) {
adaSetupManager.preSetupADAKeys(password);
}
// ADASetupManager adaSetupManager = ADASetupManager.getInstance();
// if (adaSetupManager.setupADARootKey("", password)) {
// adaSetupManager.preSetupADAKeys(password);
// }
vaultCreateState.postValue(VAULT_STATE_CREATED);
} else {
vaultCreateState.postValue(VAULT_STATE_CREATING_FAILED);
Expand Down Expand Up @@ -287,10 +287,10 @@ public void updatePassphrase(String passphrase) {
if (success) {
vaultId = new GetVaultIdCallable().call();
deleteHiddenVaultData();
ADASetupManager adaSetupManager = ADASetupManager.getInstance();
if (adaSetupManager.setupADARootKey(passphrase, password)) {
adaSetupManager.preSetupADAKeys(password);
}
// ADASetupManager adaSetupManager = ADASetupManager.getInstance();
// if (adaSetupManager.setupADARootKey(passphrase, password)) {
// adaSetupManager.preSetupADAKeys(password);
// }
signature = null;
vaultCreateState.postValue(VAULT_STATE_CREATED);
} else {
Expand Down
4 changes: 2 additions & 2 deletions app/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@

#Fri Feb 21 13:33:46 CST 2020
major=3
minor=6
patch=1
minor=11
patch=0

0 comments on commit 8882e9a

Please sign in to comment.