port to hush

This commit is contained in:
DenioD
2019-10-15 14:38:55 +02:00
parent 769db4945f
commit f6fa52fde1
10 changed files with 37 additions and 37 deletions

View File

@@ -4,8 +4,8 @@ import (
"fmt"
"github.com/pkg/errors"
"github.com/adityapk00/lightwalletd/parser/internal/bytestring"
"github.com/adityapk00/lightwalletd/walletrpc"
"github.com/DenioD/lightwalletd/parser/internal/bytestring"
"github.com/DenioD/lightwalletd/walletrpc"
)
type Block struct {

View File

@@ -8,7 +8,7 @@ import (
"math/big"
"github.com/pkg/errors"
"github.com/adityapk00/lightwalletd/parser/internal/bytestring"
"github.com/DenioD/lightwalletd/parser/internal/bytestring"
)
const (

View File

@@ -4,8 +4,8 @@ import (
"crypto/sha256"
"github.com/pkg/errors"
"github.com/adityapk00/lightwalletd/parser/internal/bytestring"
"github.com/adityapk00/lightwalletd/walletrpc"
"github.com/DenioD/lightwalletd/parser/internal/bytestring"
"github.com/DenioD/lightwalletd/walletrpc"
)
type rawTransaction struct {

View File

@@ -9,7 +9,7 @@ import (
"strings"
"testing"
"github.com/adityapk00/lightwalletd/parser/internal/bytestring"
"github.com/DenioD/lightwalletd/parser/internal/bytestring"
)
// "Human-readable" version of joinSplit struct defined in transaction.go.