Skip to content

Commit

Permalink
Merge pull request #501 from dashpay/fix/keychain-storage-location-fo…
Browse files Browse the repository at this point in the history
…r-ed

fix: change key storage locations for bls basic and ed25519
  • Loading branch information
pankcuf authored Jul 12, 2023
2 parents dd03f7c + 43ec34e commit 1b58a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DashSync/shared/Models/Managers/Chain Managers/DSKeyManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ + (NSString *)keyStoragePrefix:(KeyKind)keyType {
switch (keyType) {
case KeyKind_ECDSA: return @"";
case KeyKind_BLS: return @"_BLS_";
case KeyKind_BLSBasic: return @"_BLS_";
case KeyKind_ED25519: return @"_ED_";
case KeyKind_BLSBasic: return @"_BLS_B_";
case KeyKind_ED25519: return @"_ED25519_";
}
}

Expand Down

0 comments on commit 1b58a45

Please sign in to comment.