Update btcnet import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 17:29:53 -06:00
parent 5c52f67b4f
commit f513a56a62
5 changed files with 5 additions and 5 deletions

View file

@ -5,8 +5,8 @@
package btcscript
import (
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet"
)
// ExtractPkScriptAddrs returns the type of script, addresses and required

View file

@ -8,8 +8,8 @@ import (
"reflect"
"testing"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
)

View file

@ -8,8 +8,8 @@ import (
"encoding/hex"
"fmt"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
)

View file

@ -11,10 +11,10 @@ import (
"fmt"
"time"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcec"
"github.com/conformal/btcnet"
)
var (

View file

@ -10,10 +10,10 @@ import (
"fmt"
"testing"
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil"
"github.com/btcsuite/btcwire"
"github.com/conformal/btcec"
"github.com/conformal/btcnet"
"github.com/conformal/btcscript"
)