diff --git a/crypto/keyring/keyring.go b/crypto/keyring/keyring.go index 9734af37b..0634871a5 100644 --- a/crypto/keyring/keyring.go +++ b/crypto/keyring/keyring.go @@ -607,9 +607,10 @@ func SignWithLedger(info Info, msg []byte) (sig []byte, pub types.PubKey, err er func newOSBackendKeyringConfig(appName, dir string, buf io.Reader) keyring.Config { return keyring.Config{ - ServiceName: appName, - FileDir: dir, - FilePasswordFunc: newRealPrompt(dir, buf), + ServiceName: appName, + FileDir: dir, + KeychainTrustApplication: true, + FilePasswordFunc: newRealPrompt(dir, buf), } }