lnd.xprv/lnd.go

61 lines
1.5 KiB
Go
Raw Normal View History

2015-12-17 03:42:52 +03:00
package main
import (
"flag"
"fmt"
"net"
2015-12-30 05:59:16 +03:00
"os"
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/grpclog"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lnwallet"
)
var (
rpcport = flag.Int("port", 10000, "The port for the rpc server")
)
2015-12-17 03:42:52 +03:00
func main() {
flag.Parse()
// Create, and start the lnwallet, which handles the core payment channel
// logic, and exposes control via proxy state machines.
// TODO(roasbeef): accept config via cli flags, move to real config file
// afterwards
config := &lnwallet.Config{PrivatePass: []byte("hello"), DataDir: "test_wal"}
lnwallet, db, err := lnwallet.NewLightningWallet(config)
if err != nil {
fmt.Printf("unable to create wallet: %v\n", err)
2015-12-30 05:59:16 +03:00
os.Exit(1)
}
if err := lnwallet.Startup(); err != nil {
fmt.Printf("unable to start wallet: %v\n", err)
2015-12-30 05:59:16 +03:00
os.Exit(1)
}
lnwallet.Unlock(config.PrivatePass, time.Duration(0))
2015-12-30 05:59:16 +03:00
fmt.Println("wallet open")
defer db.Close()
2015-12-30 05:59:16 +03:00
// Initialize, and register our implementation of the gRPC server.
var opts []grpc.ServerOption
rpcServer := newRpcServer(lnwallet)
// start message handler for incoming LN messages
go OmniHandler(rpcServer)
grpcServer := grpc.NewServer(opts...)
lnrpc.RegisterLightningServer(grpcServer, rpcServer)
// Finally, start the grpc server listening for HTTP/2 connections.
lis, err := net.Listen("tcp", fmt.Sprintf(":%d", *rpcport))
if err != nil {
grpclog.Fatalf("failed to listen: %v", err)
fmt.Printf("failed to listen: %v", err)
2015-12-30 05:59:16 +03:00
os.Exit(1)
}
grpcServer.Serve(lis)
2015-12-17 03:42:52 +03:00
}