lnwallet: use new ChainNotifier API, typo fixes

This commit is contained in:
Olaoluwa Osuntokun
2017-05-10 17:43:11 -07:00
parent 5fe3a5631d
commit 1b4862d815
3 changed files with 7 additions and 6 deletions

View File

@@ -69,8 +69,8 @@ func genMultiSigScript(aPub, bPub []byte) ([]byte, error) {
// Swap to sort pubkeys if needed. Keys are sorted in lexicographical
// order. The signatures within the scriptSig must also adhere to the
// order, ensuring that the signatures for each public key appears
// in the proper order on the stack.
// order, ensuring that the signatures for each public key appears in
// the proper order on the stack.
if bytes.Compare(aPub, bPub) == -1 {
aPub, bPub = bPub, aPub
}