Update btcscript import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 19:38:15 -06:00
parent b3ed4f9172
commit 7276c1ca7d
10 changed files with 10 additions and 10 deletions

View file

@ -17,8 +17,8 @@
package main
import (
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"

View file

@ -24,9 +24,9 @@ import (
"time"
"github.com/btcsuite/btcchain"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
)

View file

@ -6,9 +6,9 @@ import (
"sort"
"testing"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"
)

View file

@ -12,9 +12,9 @@ package main
import (
"testing"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/tx"
)

View file

@ -38,9 +38,9 @@ import (
"github.com/btcsuite/btcec"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/rename"
)

View file

@ -25,9 +25,9 @@ import (
"github.com/btcsuite/btcec"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
"github.com/davecgh/go-spew/spew"
)

View file

@ -39,11 +39,11 @@ import (
"github.com/btcsuite/btcec"
"github.com/btcsuite/btcrpcclient"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/btcsuite/websocket"
"github.com/conformal/btcjson"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/chain"
"github.com/conformal/btcwallet/keystore"
"github.com/conformal/btcwallet/txstore"

View file

@ -19,9 +19,9 @@ package txstore
import (
"github.com/btcsuite/btcchain"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcjson"
"github.com/conformal/btcscript"
)
// ToJSON returns a slice of btcjson listtransactions result types for all credits

View file

@ -26,9 +26,9 @@ import (
"github.com/btcsuite/btcchain"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcscript"
)
var (

View file

@ -20,9 +20,9 @@ import (
"fmt"
"sort"
"github.com/btcsuite/btcscript"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcutil/hdkeychain"
"github.com/conformal/btcscript"
"github.com/conformal/btcwallet/waddrmgr"
"github.com/conformal/btcwallet/walletdb"
)