Browse Source

import from the duke fork of lightwalletd

master
Jonathan "Duke" Leto 2 years ago
parent
commit
9db6a3b1f1
  1. 6
      cmd/server/main.go
  2. 2
      common/cache.go
  3. 3
      common/mempool.go

6
cmd/server/main.go

@ -16,9 +16,9 @@ import (
"google.golang.org/grpc/peer"
"google.golang.org/grpc/reflection"
"git.hush.is/hush/lightwalletd/common"
"git.hush.is/hush/lightwalletd/frontend"
"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/duke/lightwalletd/common"
"git.hush.is/duke/lightwalletd/frontend"
"git.hush.is/duke/lightwalletd/walletrpc"
)
var log *logrus.Entry

2
common/cache.go

@ -4,7 +4,7 @@ import (
"bytes"
"sync"
"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/duke/lightwalletd/walletrpc"
"github.com/golang/protobuf/proto"
)

3
common/mempool.go

@ -11,7 +11,8 @@ import (
// Go is too dumb to import from branches so use upstream for now
//"github.com/zcash/lightwalletd/walletrpc"
"git.hush.is/hush/lightwalletd/walletrpc"
//"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/duke/lightwalletd/walletrpc"
)
var (

Loading…
Cancel
Save