goimports -w .

This commit is contained in:
Dave Collins 2014-07-02 19:39:37 -05:00
parent cea5e44f2d
commit 22014931d4
5 changed files with 10 additions and 5 deletions

View file

@ -6,8 +6,9 @@ package btcec_test
import (
"crypto/ecdsa"
"github.com/conformal/btcec"
"testing"
"github.com/conformal/btcec"
)
// BenchmarkAddJacobian benchmarks the secp256k1 curve addJacobian function with

View file

@ -13,9 +13,10 @@ import (
"crypto/sha1"
"encoding/hex"
"fmt"
"github.com/conformal/btcec"
"math/big"
"testing"
"github.com/conformal/btcec"
)
// TestAddJacobian tests addition of points projected in Jacobian coordinates.

View file

@ -6,9 +6,10 @@
package btcec_test
import (
"github.com/conformal/btcec"
"reflect"
"testing"
"github.com/conformal/btcec"
)
// TestSetInt ensures that setting a field value to various native integers

View file

@ -6,9 +6,10 @@ package btcec_test
import (
"bytes"
"testing"
"github.com/conformal/btcec"
"github.com/davecgh/go-spew/spew"
"testing"
)
type privKeyTest struct {

View file

@ -9,9 +9,10 @@ import (
"crypto/ecdsa"
"crypto/rand"
"fmt"
"github.com/conformal/btcec"
"math/big"
"testing"
"github.com/conformal/btcec"
)
type signatureTest struct {