Update btcutil import paths to new location.

This commit is contained in:
Dave Collins 2015-01-15 10:42:26 -06:00
parent 8e1973d865
commit c4f1ed69d2
6 changed files with 6 additions and 6 deletions

View file

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

View file

@ -8,9 +8,9 @@ import (
"reflect" "reflect"
"testing" "testing"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcutil"
) )
// decodeHex decodes the passed hex string and returns the resulting bytes. It // decodeHex decodes the passed hex string and returns the resulting bytes. It

View file

@ -8,9 +8,9 @@ import (
"encoding/hex" "encoding/hex"
"fmt" "fmt"
"github.com/btcsuite/btcutil"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/conformal/btcscript" "github.com/conformal/btcscript"
"github.com/conformal/btcutil"
) )
// This example demonstrates creating a script which pays to a bitcoin address. // This example demonstrates creating a script which pays to a bitcoin address.

View file

@ -14,7 +14,7 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/conformal/btcutil" "github.com/btcsuite/btcutil"
"github.com/conformal/btcwire" "github.com/conformal/btcwire"
) )

View file

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

View file

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