Browse Source

Bugfix

pull/1782/head
Christopher Goes 7 years ago
parent
commit
86b09b0cd7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ledger.go

+ 1
- 1
ledger.go View File

@ -27,7 +27,7 @@ func pubkeyLedger(device *ledger.Ledger) (pub PubKey, err error) {
// Reserialize in the 33-byte compressed format
cmp, err := secp256k1.ParsePubKey(key[:], secp256k1.S256())
copy(p[:], cmp.SerializeCompressed())
return pub, err
return p, err
}
func signLedger(device *ledger.Ledger, msg []byte) (sig Signature, err error) {


Loading…
Cancel
Save