aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-23 16:51:47 +0800
committerobscuren <geffobscura@gmail.com>2015-04-23 17:50:12 +0800
commitd7bab216811f4444a3183fd3e99061b04b4c7bda (patch)
tree7c43de4c61acce74cb515790d2e0a62695b9b3c3 /common
parentfba40e18d9c231b3ab7ee7f6eba36ac859dffbb2 (diff)
downloaddexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar.gz
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar.bz2
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar.lz
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar.xz
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.tar.zst
dexon-d7bab216811f4444a3183fd3e99061b04b4c7bda.zip
natspec: fixed test to work with new queued transactions
Diffstat (limited to 'common')
-rw-r--r--common/natspec/natspec_e2e_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/natspec/natspec_e2e_test.go b/common/natspec/natspec_e2e_test.go
index 147abe162..6bdaec8a1 100644
--- a/common/natspec/natspec_e2e_test.go
+++ b/common/natspec/natspec_e2e_test.go
@@ -220,7 +220,7 @@ func (self *testFrontend) applyTxs() {
block := self.ethereum.ChainManager().NewBlock(cb)
coinbase := self.stateDb.GetStateObject(cb)
coinbase.SetGasPool(big.NewInt(10000000))
- txs := self.ethereum.TxPool().GetTransactions()
+ txs := self.ethereum.TxPool().GetQueuedTransactions()
for i := 0; i < len(txs); i++ {
for _, tx := range txs {