Update btcec import paths to new location.

This commit is contained in:
Dave Collins 2015-01-16 18:05:06 -06:00
parent f513a56a62
commit eb02adfada
3 changed files with 3 additions and 3 deletions

View file

@ -15,9 +15,9 @@ import (
"golang.org/x/crypto/ripemd160" "golang.org/x/crypto/ripemd160"
"github.com/btcsuite/btcec"
"github.com/btcsuite/btcwire" "github.com/btcsuite/btcwire"
"github.com/btcsuite/fastsha256" "github.com/btcsuite/fastsha256"
"github.com/conformal/btcec"
) )
// An opcode defines the information related to a btcscript opcode. // An opcode defines the information related to a btcscript opcode.

View file

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

View file

@ -10,10 +10,10 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/btcsuite/btcec"
"github.com/btcsuite/btcnet" "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/btcscript" "github.com/conformal/btcscript"
) )