Skip to content

Commit

Permalink
[IOS]Relase v1.5.28
Browse files Browse the repository at this point in the history
  • Loading branch information
wannabit-yongjoo committed Dec 13, 2021
1 parent d007be9 commit e19914e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cosmostation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7970,7 +7970,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 127;
CURRENT_PROJECT_VERSION = 128;
DEVELOPMENT_TEAM = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -7982,7 +7982,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.5.27;
MARKETING_VERSION = 1.5.28;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -8002,7 +8002,7 @@
CODE_SIGN_ENTITLEMENTS = Cosmostation/Cosmostation.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 127;
CURRENT_PROJECT_VERSION = 128;
DEVELOPMENT_TEAM = 8G562MW56M;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -8014,7 +8014,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.5.27;
MARKETING_VERSION = 1.5.28;
PRODUCT_BUNDLE_IDENTIFIER = io.wannabit.cosmostation;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
8 changes: 4 additions & 4 deletions Cosmostation/Controller/GenTx/StepGenTxViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -708,16 +708,16 @@ class StepGenTxViewController: UIPageViewController, UIPageViewControllerDelegat
if let words = KeychainWrapper.standard.string(forKey: self.mAccount!.account_uuid.sha1())?.trimmingCharacters(in: .whitespacesAndNewlines).components(separatedBy: " ") {
self.privateKey = KeyFac.getPrivateRaw(words, self.mAccount!)
self.publicKey = KeyFac.getPublicFromPrivateKey(self.privateKey!)
print("Mnemonci private ", self.privateKey!.hexEncodedString())
print("Mnemonci publicKey ", self.publicKey!.hexEncodedString())
// print("Mnemonci private ", self.privateKey!.hexEncodedString())
// print("Mnemonci publicKey ", self.publicKey!.hexEncodedString())
}

} else {
if let key = KeychainWrapper.standard.string(forKey: self.mAccount!.getPrivateKeySha1()) {
self.privateKey = KeyFac.getPrivateFromString(key)
self.publicKey = KeyFac.getPublicFromPrivateKey(self.privateKey!)
print("Private private ", self.privateKey!.hexEncodedString())
print("Private publicKey ", self.publicKey!.hexEncodedString())
// print("Private private ", self.privateKey!.hexEncodedString())
// print("Private publicKey ", self.publicKey!.hexEncodedString())
}
}
}
Expand Down

0 comments on commit e19914e

Please sign in to comment.