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 package btcscript
import ( import (
"github.com/btcsuite/btcnet"
"github.com/btcsuite/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcnet"
) )
// ExtractPkScriptAddrs returns the type of script, addresses and required // ExtractPkScriptAddrs returns the type of script, addresses and required

View file

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

View file

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

View file

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

View file

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