• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lightningnetwork / lnd / 13157733617

05 Feb 2025 12:49PM UTC coverage: 57.712% (-1.1%) from 58.82%
13157733617

Pull #9447

github

yyforyongyu
sweep: rename methods for clarity

We now rename "third party" to "unknown" as the inputs can be spent via
an older sweeping tx, a third party (anchor), or a remote party (pin).
In fee bumper we don't have the info to distinguish the above cases, and
leave them to be further handled by the sweeper as it has more context.
Pull Request #9447: sweep: start tracking input spending status in the fee bumper

83 of 87 new or added lines in 2 files covered. (95.4%)

19472 existing lines in 252 files now uncovered.

103634 of 179570 relevant lines covered (57.71%)

24840.31 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

61.9
/netann/node_signer.go
1
package netann
2

3
import (
4
        "fmt"
5

6
        "github.com/btcsuite/btcd/btcec/v2/ecdsa"
7
        "github.com/lightningnetwork/lnd/keychain"
8
        "github.com/lightningnetwork/lnd/lnwallet"
9
)
10

11
// NodeSigner is an implementation of the MessageSigner interface backed by the
12
// identity private key of running lnd node.
13
type NodeSigner struct {
14
        keySigner keychain.SingleKeyMessageSigner
15
}
16

17
// NewNodeSigner creates a new instance of the NodeSigner backed by the target
18
// private key.
19
func NewNodeSigner(keySigner keychain.SingleKeyMessageSigner) *NodeSigner {
42✔
20
        return &NodeSigner{
42✔
21
                keySigner: keySigner,
42✔
22
        }
42✔
23
}
42✔
24

25
// SignMessage signs a double-sha256 digest of the passed msg under the
26
// resident node's private key described in the key locator. If the target key
27
// locator is _not_ the node's private key, then an error will be returned.
28
func (n *NodeSigner) SignMessage(keyLoc keychain.KeyLocator,
29
        msg []byte, doubleHash bool) (*ecdsa.Signature, error) {
100✔
30

100✔
31
        // If this isn't our identity public key, then we'll exit early with an
100✔
32
        // error as we can't sign with this key.
100✔
33
        if keyLoc != n.keySigner.KeyLocator() {
100✔
34
                return nil, fmt.Errorf("unknown public key locator")
×
35
        }
×
36

37
        // Otherwise, we'll sign the double-sha256 of the target message.
38
        sig, err := n.keySigner.SignMessage(msg, doubleHash)
100✔
39
        if err != nil {
100✔
40
                return nil, fmt.Errorf("can't sign the message: %w", err)
×
41
        }
×
42

43
        return sig, nil
100✔
44
}
45

46
// SignMessageCompact signs a single or double sha256 digest of the msg
47
// parameter under the resident node's private key. The returned signature is a
48
// pubkey-recoverable signature.
49
func (n *NodeSigner) SignMessageCompact(msg []byte, doubleHash bool) ([]byte,
UNCOV
50
        error) {
×
UNCOV
51

×
UNCOV
52
        return n.keySigner.SignMessageCompact(msg, doubleHash)
×
UNCOV
53
}
×
54

55
// A compile time check to ensure that NodeSigner implements the MessageSigner
56
// interface.
57
var _ lnwallet.MessageSigner = (*NodeSigner)(nil)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc