Skip to content

Commit

Permalink
rpcserver: allow channels to be opened using --node_id
Browse files Browse the repository at this point in the history
This commit fixes a slight bug in the interaction between the cli
program and the rpcsever itself. With this commit it’s now again
possible to create a channel with a peer that’s identified by its
peerID, instead of only the pubkey.
  • Loading branch information
Roasbeef committed Jan 15, 2017
1 parent 8990de4 commit 9b4ac77
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
18 changes: 14 additions & 4 deletions rpcserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"io"
"math"
"net"
"strings"
"time"

"sync"
Expand Down Expand Up @@ -244,10 +245,19 @@ func (r *rpcServer) OpenChannel(in *lnrpc.OpenChannelRequest,
"state must be below the local funding amount")
}

// TODO(roasbeef): make it optional
nodepubKey, err := btcec.ParsePubKey(in.NodePubkey, btcec.S256())
if err != nil {
return err
var (
nodepubKey *btcec.PublicKey
err error
)

// If the node key is set, the we'll parse the raw bytes into a pubkey
// object so we can easily manipulate it. If this isn't set, then we
// expected the TargetPeerId to be set accordingly.
if len(in.NodePubkey) != 0 {
nodepubKey, err = btcec.ParsePubKey(in.NodePubkey, btcec.S256())
if err != nil {
return err
}
}

// Instruct the server to trigger the necessary events to attempt to
Expand Down
12 changes: 10 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -713,9 +713,17 @@ func (s *server) handleConnectPeer(msg *connectPeerMsg) {
// request to the funding manager allowing it to initiate the channel funding
// workflow.
func (s *server) handleOpenChanReq(req *openChanReq) {
var targetPeer *peer
var (
targetPeer *peer
pubStr string
)

pubStr := string(req.targetPubkey.SerializeCompressed())
// If the user is targeting the peer by public key, then we'll need to
// convert that into a string for our map. Otherwise, we expect them to
// target by peer ID instead.
if req.targetPubkey != nil {
pubStr = string(req.targetPubkey.SerializeCompressed())
}

// First attempt to locate the target peer to open a channel with, if
// we're unable to locate the peer then this request will fail.
Expand Down

0 comments on commit 9b4ac77

Please sign in to comment.