Fixed go lint.

This commit is contained in:
dinhln89 2018-06-13 16:12:07 +07:00
parent 847bcffb87
commit 11aad42050
2 changed files with 8 additions and 8 deletions

View file

@ -107,7 +107,7 @@ var (
type TxStatus uint type TxStatus uint
const ( const (
TxStatusUnknown TxStatus = iota TxStatusUnknown TxStatus = iota
TxStatusQueued TxStatusQueued
TxStatusPending TxStatusPending
TxStatusIncluded TxStatusIncluded

View file

@ -22,16 +22,16 @@ import (
"math/rand" "math/rand"
"time" "time"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/consensus" "github.com/ethereum/go-ethereum/consensus"
"github.com/ethereum/go-ethereum/consensus/clique"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/log"
"gopkg.in/karalabe/cookiejar.v2/collections/prque"
"github.com/ethereum/go-ethereum/params" "github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/accounts" "gopkg.in/karalabe/cookiejar.v2/collections/prque"
"math/big" "math/big"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/consensus/clique"
) )
const ( const (