Compare commits

..

No commits in common. 'c89411628e4e7a558142583cf4e381654f5524d6' and 'b60af12ffc0d1d164535ddb338e5a565552d585e' have entirely different histories.

@ -16,6 +16,8 @@ task:
GO111MODULE: "off"
GOLANGCI_MODULES_ARGS: "--disable=gomoddirectives,gomodguard"
MODULES_NAME: " Modules Off"
# TODO: Stop allowing failures once btcd v0.22.1 is released.
allow_failures: true
fetch_script:
- go get -tags "$GOX_TAGS" -d -v -t github.com/$CIRRUS_REPO_FULL_NAME/...
- GOOS=windows go get -tags "$GOX_TAGS" -d -v -t github.com/$CIRRUS_REPO_FULL_NAME/...
@ -109,6 +111,8 @@ task:
- env:
GO111MODULE: "off"
MODULES_NAME: " Modules Off"
# TODO: Stop allowing failures once btcd v0.22.1 is released.
allow_failures: true
fetch_script:
- go get -tags "$GOX_TAGS" -d -v -t github.com/$CIRRUS_REPO_FULL_NAME/...
- GOOS=windows go get -tags "$GOX_TAGS" -d -v -t github.com/$CIRRUS_REPO_FULL_NAME/...
@ -175,6 +179,8 @@ task:
- env:
GO111MODULE: "off"
MODULES_NAME: " Modules Off"
# TODO: Stop allowing failures once btcd v0.22.1 is released.
allow_failures: true
gox_script:
- go get github.com/mitchellh/gox
fetch_script:

@ -2,7 +2,7 @@ package namecoin
import (
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/rpcclient"
"github.com/namecoin/btcd/rpcclient"
"gopkg.in/hlandau/madns.v2/merr"
"github.com/namecoin/ncbtcjson"

@ -7,7 +7,7 @@ import "fmt"
import "os"
import "strconv"
import "io/ioutil"
import "github.com/btcsuite/btcd/rpcclient"
import "github.com/namecoin/btcd/rpcclient"
import "github.com/namecoin/ncdns/util"
var rpchost = flag.String("rpchost", "", "Namecoin RPC host:port")

@ -4,7 +4,7 @@ import (
"os"
"github.com/hlandau/xlog"
"github.com/btcsuite/btcd/rpcclient"
"github.com/namecoin/btcd/rpcclient"
"gopkg.in/hlandau/easyconfig.v1"
"gopkg.in/hlandau/easyconfig.v1/cflag"

@ -12,7 +12,7 @@ import (
"github.com/hlandau/buildinfo"
"github.com/hlandau/xlog"
"github.com/miekg/dns"
"github.com/btcsuite/btcd/rpcclient"
"github.com/namecoin/btcd/rpcclient"
"github.com/namecoin/ncdns/backend"
"github.com/namecoin/ncdns/namecoin"
madns "gopkg.in/hlandau/madns.v2"

Loading…
Cancel
Save