Skip to content

Commit

Permalink
Problem: use file for keyring of OS backend password protection
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Jun 13, 2024
1 parent 9b25932 commit 23a2e9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* (rpc) [#1444](https://github.com/crypto-org-chain/cronos/pull/1444) Avoid nil pointer error when query blocks before feemarket module gets enabled.
* [#1439](https://github.com/crypto-org-chain/cronos/pull/1439) Add back default prepare proposal logic.
* [#1466](https://github.com/crypto-org-chain/cronos/pull/1466) Fix handling of pending transactions related APIs.
* [#1473](https://github.com/crypto-org-chain/cronos/pull/1473) Fix handling of pending transactions related APIs.

*May 3, 2024*

Expand Down
3 changes: 2 additions & 1 deletion x/e2ee/keyring/keyring.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ func New(
ServiceName: serviceName,
FileDir: rootDir,
KeychainTrustApplication: true,
FilePasswordFunc: newRealPrompt(rootDir, userInput),
KeychainName: serviceName,
KeychainPasswordFunc: newRealPrompt(rootDir, userInput),
})
case sdkkeyring.BackendKWallet:
db, err = keyring.Open(keyring.Config{
Expand Down

0 comments on commit 23a2e9f

Please sign in to comment.