goimports -w .

This commit is contained in:
Dave Collins 2014-07-02 19:42:07 -05:00
parent 6d79aa5ff1
commit d7e4789eda
3 changed files with 6 additions and 3 deletions

View file

@ -5,8 +5,9 @@
package btcnet package btcnet
import ( import (
"github.com/conformal/btcwire"
"time" "time"
"github.com/conformal/btcwire"
) )
// genesisCoinbaseTx is the coinbase transaction for the genesis blocks for // genesisCoinbaseTx is the coinbase transaction for the genesis blocks for

View file

@ -6,9 +6,10 @@ package btcnet_test
import ( import (
"bytes" "bytes"
"testing"
"github.com/conformal/btcnet" "github.com/conformal/btcnet"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
"testing"
) )
// TestGenesisBlock tests the genesis block of the main network for validity by // TestGenesisBlock tests the genesis block of the main network for validity by

View file

@ -1,8 +1,9 @@
package btcnet_test package btcnet_test
import ( import (
. "github.com/conformal/btcnet"
"testing" "testing"
. "github.com/conformal/btcnet"
) )
// Define some of the required parameters for a user-registered // Define some of the required parameters for a user-registered