diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-05 09:35:49 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-05 09:35:49 +0800 |
commit | 57f95c1dc7f2e3412d7d78cfdab7074ce1dbbf09 (patch) | |
tree | 4b8633d0a58347c23704118697d0cbdf96ce67e9 /eth | |
parent | 1d519854e2bfe8d5f2e8674f4f04ccf9aeaabe84 (diff) | |
download | go-tangerine-57f95c1dc7f2e3412d7d78cfdab7074ce1dbbf09.tar.gz go-tangerine-57f95c1dc7f2e3412d7d78cfdab7074ce1dbbf09.tar.zst go-tangerine-57f95c1dc7f2e3412d7d78cfdab7074ce1dbbf09.zip |
fixed test
Diffstat (limited to 'eth')
-rw-r--r-- | eth/protocol_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go index 224b59abd..1fe6d8f6b 100644 --- a/eth/protocol_test.go +++ b/eth/protocol_test.go @@ -80,6 +80,8 @@ func (self *testTxPool) AddTransactions(txs []*types.Transaction) { } } +func (self *testTxPool) GetTransactions() types.Transactions { return nil } + func (self *testChainManager) GetBlockHashesFromHash(hash []byte, amount uint64) (hashes [][]byte) { if self.getBlockHashes != nil { hashes = self.getBlockHashes(hash, amount) |