cleanup: rename package and vendor dependencies for old go versions

Fixes #8 and begins to address deployability.
This commit is contained in:
George Tankersley
2019-01-03 19:12:46 +00:00
parent 7d7390eeae
commit 7726a6752d
585 changed files with 513299 additions and 33 deletions

View File

@@ -3,8 +3,8 @@ package parser
import (
"fmt"
"github.com/gtank/ctxd/parser/internal/bytestring"
"github.com/gtank/ctxd/rpc"
"github.com/zcash-hackworks/lightwalletd/parser/internal/bytestring"
"github.com/zcash-hackworks/lightwalletd/rpc"
"github.com/pkg/errors"
)

View File

@@ -7,7 +7,7 @@ import (
"log"
"math/big"
"github.com/gtank/ctxd/parser/internal/bytestring"
"github.com/zcash-hackworks/lightwalletd/parser/internal/bytestring"
"github.com/pkg/errors"
)

View File

@@ -3,8 +3,8 @@ package parser
import (
"crypto/sha256"
"github.com/gtank/ctxd/parser/internal/bytestring"
"github.com/gtank/ctxd/rpc"
"github.com/zcash-hackworks/lightwalletd/parser/internal/bytestring"
"github.com/zcash-hackworks/lightwalletd/rpc"
"github.com/pkg/errors"
)

View File

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