Browse Source

Use the duke fork

master
Jonathan "Duke" Leto 2 years ago
parent
commit
6bc8be5ad1
  1. 3
      common/common.go
  2. 5
      frontend/service.go
  3. 4
      parser/block.go
  4. 2
      parser/block_header.go
  5. 4
      parser/transaction.go
  6. 2
      parser/transaction_test.go

3
common/common.go

@ -8,7 +8,8 @@ import (
"strings"
"time"
"git.hush.is/hush/lightwalletd/parser"
//"git.hush.is/hush/lightwalletd/parser"
"git.hush.is/duke/lightwalletd/parser"
// duke master = mempool branch
"git.hush.is/duke/lightwalletd/walletrpc"
//"git.hush.is/hush/lightwalletd/walletrpc"

5
frontend/service.go

@ -13,12 +13,13 @@ import (
"github.com/btcsuite/btcd/rpcclient"
"github.com/sirupsen/logrus"
"git.hush.is/hush/lightwalletd/common"
//"git.hush.is/hush/lightwalletd/common"
"git.hush.is/duke/lightwalletd/common"
// go should be able to import branches!
// duke master = mempool branch
"git.hush.is/duke/lightwalletd/walletrpc"
//"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/hush/lightwalletd/parser"
"git.hush.is/duke/lightwalletd/parser"
)
type lwdStreamer struct {

4
parser/block.go

@ -3,8 +3,8 @@ package parser
import (
"fmt"
"git.hush.is/hush/lightwalletd/parser/internal/bytestring"
"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/duke/lightwalletd/parser/internal/bytestring"
"git.hush.is/duke/lightwalletd/walletrpc"
"github.com/pkg/errors"
)

2
parser/block_header.go

@ -7,7 +7,7 @@ import (
"log"
"math/big"
"git.hush.is/hush/lightwalletd/parser/internal/bytestring"
"git.hush.is/duke/lightwalletd/parser/internal/bytestring"
"github.com/pkg/errors"
)

4
parser/transaction.go

@ -3,8 +3,8 @@ package parser
import (
"crypto/sha256"
"git.hush.is/hush/lightwalletd/parser/internal/bytestring"
"git.hush.is/hush/lightwalletd/walletrpc"
"git.hush.is/duke/lightwalletd/parser/internal/bytestring"
"git.hush.is/duke/lightwalletd/walletrpc"
"github.com/pkg/errors"
)

2
parser/transaction_test.go

@ -9,7 +9,7 @@ import (
"strings"
"testing"
"git.hush.is/hush/lightwalletd/parser/internal/bytestring"
"git.hush.is/duke/lightwalletd/parser/internal/bytestring"
)
// "Human-readable" version of joinSplit struct defined in transaction.go.

Loading…
Cancel
Save