You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ref: #931 (comment)
Basically change that part of the code to not depend on the hardcoded string "local", and have it be some property of that object. This was moved to an issue so that the ledger PR can be merged in.
The text was updated successfully, but these errors were encountered:
@ValarDragon I've already made that logic enumerated, but having that be part of the type (I call it KeyType) might be difficult because of import cycles. Did you have other thoughts on this?
Right now it's more or less:
// we only need a passphrase for locally stored keysifkeyInfo.GetType() ==cryptokeys.TypeLocal {
passphrase, err=GetPassphraseFromStdin(name)
iferr!=nil {
returnfmt.Errorf("Error reading passphrase: %v", err)
}
}
Ref: #931 (comment)
Basically change that part of the code to not depend on the hardcoded string "local", and have it be some property of that object. This was moved to an issue so that the ledger PR can be merged in.
The text was updated successfully, but these errors were encountered: