multi: Simplify code per gosimple linter.

This simplifies the code based on the recommendations of the gosimple
lint tool.
This commit is contained in:
Dave Collins 2017-07-01 02:23:25 -05:00
parent a6965d493f
commit 01cb59c67d
No known key found for this signature in database
GPG key ID: B8904D9D9C93D1F2
27 changed files with 1 additions and 56 deletions

View file

@ -321,8 +321,6 @@ func (b *BlockChain) addOrphanBlock(block *btcutil.Block) {
// Add to previous hash lookup index for faster dependency lookups. // Add to previous hash lookup index for faster dependency lookups.
prevHash := &block.MsgBlock().Header.PrevBlock prevHash := &block.MsgBlock().Header.PrevBlock
b.prevOrphans[*prevHash] = append(b.prevOrphans[*prevHash], oBlock) b.prevOrphans[*prevHash] = append(b.prevOrphans[*prevHash], oBlock)
return
} }
// SequenceLock represents the converted relative lock-time in seconds, and // SequenceLock represents the converted relative lock-time in seconds, and

View file

@ -68,8 +68,6 @@ func TestReorganization(t *testing.T) {
"is an orphan\n", i) "is an orphan\n", i)
} }
} }
return
} }
// loadBlocks reads files containing bitcoin block data (gzipped but otherwise // loadBlocks reads files containing bitcoin block data (gzipped but otherwise

View file

@ -105,7 +105,6 @@ func (entry *UtxoEntry) SpendOutput(outputIndex uint32) {
entry.modified = true entry.modified = true
output.spent = true output.spent = true
return
} }
// IsFullySpent returns whether or not the transaction the utxo entry represents // IsFullySpent returns whether or not the transaction the utxo entry represents
@ -269,7 +268,6 @@ func (view *UtxoViewpoint) AddTxOuts(tx *btcutil.Tx, blockHeight int32) {
pkScript: txOut.PkScript, pkScript: txOut.PkScript,
} }
} }
return
} }
// connectTransaction updates the view by adding all new utxos created by the // connectTransaction updates the view by adding all new utxos created by the

View file

@ -49,7 +49,7 @@ func MarshalCmd(id interface{}, cmd interface{}) ([]byte, error) {
// The provided command must not be nil. // The provided command must not be nil.
rv := reflect.ValueOf(cmd) rv := reflect.ValueOf(cmd)
if rv.IsNil() { if rv.IsNil() {
str := fmt.Sprint("the specified command is nil") str := "the specified command is nil"
return nil, makeError(ErrInvalidType, str) return nil, makeError(ErrInvalidType, str)
} }

View file

@ -710,7 +710,6 @@ func (s *blockStore) handleRollback(oldBlockFileNum, oldBlockOffset uint32) {
wc.curFileNum, err) wc.curFileNum, err)
return return
} }
return
} }
// scanBlockFiles searches the database directory for all flat block files to // scanBlockFiles searches the database directory for all flat block files to

View file

@ -99,7 +99,6 @@ func (m *mruInventoryMap) Add(iv *wire.InvVect) {
// The limit hasn't been reached yet, so just add the new item. // The limit hasn't been reached yet, so just add the new item.
node := m.invList.PushFront(iv) node := m.invList.PushFront(iv)
m.invMap[*iv] = node m.invMap[*iv] = node
return
} }
// Delete deletes the passed inventory item from the map (if it exists). // Delete deletes the passed inventory item from the map (if it exists).

View file

@ -97,7 +97,6 @@ func (m *mruNonceMap) Add(nonce uint64) {
// The limit hasn't been reached yet, so just add the new item. // The limit hasn't been reached yet, so just add the new item.
node := m.nonceList.PushFront(nonce) node := m.nonceList.PushFront(nonce)
m.nonceMap[nonce] = node m.nonceMap[nonce] = node
return
} }
// Delete deletes the passed nonce from the map (if it exists). // Delete deletes the passed nonce from the map (if it exists).

View file

@ -95,8 +95,6 @@ func TestAddr(t *testing.T) {
"protocol version %d - got %v, want %v", pver, "protocol version %d - got %v, want %v", pver,
maxPayload, wantPayload) maxPayload, wantPayload)
} }
return
} }
// TestAddrWire tests the MsgAddr wire encode and decode for various numbers // TestAddrWire tests the MsgAddr wire encode and decode for various numbers

View file

@ -65,8 +65,6 @@ func TestBlock(t *testing.T) {
t.Errorf("ClearTransactions: wrong transactions - got %v, want %v", t.Errorf("ClearTransactions: wrong transactions - got %v, want %v",
len(msg.Transactions), 0) len(msg.Transactions), 0)
} }
return
} }
// TestBlockTxHashes tests the ability to generate a slice of all transaction // TestBlockTxHashes tests the ability to generate a slice of all transaction

View file

@ -59,8 +59,6 @@ func TestFeeFilterLatest(t *testing.T) {
if msg.MinFee != readmsg.MinFee { if msg.MinFee != readmsg.MinFee {
t.Errorf("Should get same minfee for protocol version %d", pver) t.Errorf("Should get same minfee for protocol version %d", pver)
} }
return
} }
// TestFeeFilterWire tests the MsgFeeFilter wire encode and decode for various protocol // TestFeeFilterWire tests the MsgFeeFilter wire encode and decode for various protocol

View file

@ -48,8 +48,6 @@ func TestFilterAddLatest(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("decode of MsgFilterAdd failed [%v] err <%v>", buf, err) t.Errorf("decode of MsgFilterAdd failed [%v] err <%v>", buf, err)
} }
return
} }
// TestFilterAddCrossProtocol tests the MsgFilterAdd API when encoding with the // TestFilterAddCrossProtocol tests the MsgFilterAdd API when encoding with the

View file

@ -34,8 +34,6 @@ func TestFilterClearLatest(t *testing.T) {
"protocol version %d - got %v, want %v", pver, "protocol version %d - got %v, want %v", pver,
maxPayload, wantPayload) maxPayload, wantPayload)
} }
return
} }
// TestFilterClearCrossProtocol tests the MsgFilterClear API when encoding with // TestFilterClearCrossProtocol tests the MsgFilterClear API when encoding with

View file

@ -48,8 +48,6 @@ func TestFilterLoadLatest(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("decode of MsgFilterLoad failed [%v] err <%v>", buf, err) t.Errorf("decode of MsgFilterLoad failed [%v] err <%v>", buf, err)
} }
return
} }
// TestFilterLoadCrossProtocol tests the MsgFilterLoad API when encoding with // TestFilterLoadCrossProtocol tests the MsgFilterLoad API when encoding with

View file

@ -33,8 +33,6 @@ func TestGetAddr(t *testing.T) {
"protocol version %d - got %v, want %v", pver, "protocol version %d - got %v, want %v", pver,
maxPayload, wantPayload) maxPayload, wantPayload)
} }
return
} }
// TestGetAddrWire tests the MsgGetAddr wire encode and decode for various // TestGetAddrWire tests the MsgGetAddr wire encode and decode for various

View file

@ -78,8 +78,6 @@ func TestGetBlocks(t *testing.T) {
t.Errorf("AddBlockLocatorHash: expected error on too many " + t.Errorf("AddBlockLocatorHash: expected error on too many " +
"block locator hashes not received") "block locator hashes not received")
} }
return
} }
// TestGetBlocksWire tests the MsgGetBlocks wire encode and decode for various // TestGetBlocksWire tests the MsgGetBlocks wire encode and decode for various

View file

@ -66,8 +66,6 @@ func TestGetData(t *testing.T) {
t.Errorf("NewMsgGetDataSizeHint: wrong cap for size hint - "+ t.Errorf("NewMsgGetDataSizeHint: wrong cap for size hint - "+
"got %v, want %v", cap(msg.InvList), wantCap) "got %v, want %v", cap(msg.InvList), wantCap)
} }
return
} }
// TestGetDataWire tests the MsgGetData wire encode and decode for various // TestGetDataWire tests the MsgGetData wire encode and decode for various

View file

@ -65,8 +65,6 @@ func TestGetHeaders(t *testing.T) {
t.Errorf("AddBlockLocatorHash: expected error on too many " + t.Errorf("AddBlockLocatorHash: expected error on too many " +
"block locator hashes not received") "block locator hashes not received")
} }
return
} }
// TestGetHeadersWire tests the MsgGetHeaders wire encode and decode for various // TestGetHeadersWire tests the MsgGetHeaders wire encode and decode for various

View file

@ -55,8 +55,6 @@ func TestHeaders(t *testing.T) {
t.Errorf("AddBlockHeader: expected error on too many headers " + t.Errorf("AddBlockHeader: expected error on too many headers " +
"not received") "not received")
} }
return
} }
// TestHeadersWire tests the MsgHeaders wire encode and decode for various // TestHeadersWire tests the MsgHeaders wire encode and decode for various

View file

@ -66,8 +66,6 @@ func TestInv(t *testing.T) {
t.Errorf("NewMsgInvSizeHint: wrong cap for size hint - "+ t.Errorf("NewMsgInvSizeHint: wrong cap for size hint - "+
"got %v, want %v", cap(msg.InvList), wantCap) "got %v, want %v", cap(msg.InvList), wantCap)
} }
return
} }
// TestInvWire tests the MsgInv wire encode and decode for various numbers // TestInvWire tests the MsgInv wire encode and decode for various numbers

View file

@ -59,6 +59,4 @@ func TestMemPool(t *testing.T) {
s := "decode of MsgMemPool passed for old protocol version %v err <%v>" s := "decode of MsgMemPool passed for old protocol version %v err <%v>"
t.Errorf(s, msg, err) t.Errorf(s, msg, err)
} }
return
} }

View file

@ -57,8 +57,6 @@ func TestNotFound(t *testing.T) {
t.Errorf("AddInvVect: expected error on too many inventory " + t.Errorf("AddInvVect: expected error on too many inventory " +
"vectors not received") "vectors not received")
} }
return
} }
// TestNotFoundWire tests the MsgNotFound wire encode and decode for various // TestNotFoundWire tests the MsgNotFound wire encode and decode for various

View file

@ -43,8 +43,6 @@ func TestPing(t *testing.T) {
"protocol version %d - got %v, want %v", pver, "protocol version %d - got %v, want %v", pver,
maxPayload, wantPayload) maxPayload, wantPayload)
} }
return
} }
// TestPingBIP0031 tests the MsgPing API against the protocol version // TestPingBIP0031 tests the MsgPing API against the protocol version
@ -91,8 +89,6 @@ func TestPingBIP0031(t *testing.T) {
if msg.Nonce == readmsg.Nonce { if msg.Nonce == readmsg.Nonce {
t.Errorf("Should not get same nonce for protocol version %d", pver) t.Errorf("Should not get same nonce for protocol version %d", pver)
} }
return
} }
// TestPingCrossProtocol tests the MsgPing API when encoding with the latest // TestPingCrossProtocol tests the MsgPing API when encoding with the latest

View file

@ -61,8 +61,6 @@ func TestPongLatest(t *testing.T) {
if msg.Nonce != readmsg.Nonce { if msg.Nonce != readmsg.Nonce {
t.Errorf("Should get same nonce for protocol version %d", pver) t.Errorf("Should get same nonce for protocol version %d", pver)
} }
return
} }
// TestPongBIP0031 tests the MsgPong API against the protocol version // TestPongBIP0031 tests the MsgPong API against the protocol version
@ -108,8 +106,6 @@ func TestPongBIP0031(t *testing.T) {
if msg.Nonce == readmsg.Nonce { if msg.Nonce == readmsg.Nonce {
t.Errorf("Should not get same nonce for protocol version %d", pver) t.Errorf("Should not get same nonce for protocol version %d", pver)
} }
return
} }
// TestPongCrossProtocol tests the MsgPong API when encoding with the latest // TestPongCrossProtocol tests the MsgPong API when encoding with the latest

View file

@ -68,8 +68,6 @@ func TestSendHeaders(t *testing.T) {
"version %v err <%v>" "version %v err <%v>"
t.Errorf(s, msg, err) t.Errorf(s, msg, err)
} }
return
} }
// TestSendHeadersBIP0130 tests the MsgSendHeaders API against the protocol // TestSendHeadersBIP0130 tests the MsgSendHeaders API against the protocol
@ -95,8 +93,6 @@ func TestSendHeadersBIP0130(t *testing.T) {
t.Errorf("decode of MsgSendHeaders succeeded when it should " + t.Errorf("decode of MsgSendHeaders succeeded when it should " +
"have failed") "have failed")
} }
return
} }
// TestSendHeadersCrossProtocol tests the MsgSendHeaders API when encoding with // TestSendHeadersCrossProtocol tests the MsgSendHeaders API when encoding with

View file

@ -124,8 +124,6 @@ func TestTx(t *testing.T) {
t.Errorf("Copy: mismatched tx messages - got %v, want %v", t.Errorf("Copy: mismatched tx messages - got %v, want %v",
spew.Sdump(newMsg), spew.Sdump(msg)) spew.Sdump(newMsg), spew.Sdump(msg))
} }
return
} }
// TestTxHash tests the ability to generate the hash of a transaction accurately. // TestTxHash tests the ability to generate the hash of a transaction accurately.

View file

@ -32,8 +32,6 @@ func TestVerAck(t *testing.T) {
"protocol version %d - got %v, want %v", pver, "protocol version %d - got %v, want %v", pver,
maxPayload, wantPayload) maxPayload, wantPayload)
} }
return
} }
// TestVerAckWire tests the MsgVerAck wire encode and decode for various // TestVerAckWire tests the MsgVerAck wire encode and decode for various

View file

@ -124,8 +124,6 @@ func TestVersion(t *testing.T) {
if !msg.HasService(SFNodeNetwork) { if !msg.HasService(SFNodeNetwork) {
t.Errorf("HasService: SFNodeNetwork service not set") t.Errorf("HasService: SFNodeNetwork service not set")
} }
return
} }
// TestVersionWire tests the MsgVersion wire encode and decode for various // TestVersionWire tests the MsgVersion wire encode and decode for various