Commit 7b933c41 authored by vicotor's avatar vicotor

remove test tx

parent 3c52e9d5
...@@ -74,9 +74,9 @@ func (m MockEngine) NewPayload(params exchain.PayloadParams) (exchain.ExecutionR ...@@ -74,9 +74,9 @@ func (m MockEngine) NewPayload(params exchain.PayloadParams) (exchain.ExecutionR
if params.Transactions != nil { if params.Transactions != nil {
txs.Txs = append(txs.Txs, params.Transactions.Txs...) txs.Txs = append(txs.Txs, params.Transactions.Txs...)
} }
if testTxs := m.fortest(header); testTxs != nil { //if testTxs := m.fortest(header); testTxs != nil {
txs.Txs = append(txs.Txs, testTxs...) // txs.Txs = append(txs.Txs, testTxs...)
} //}
receipts, err := m.ProcessTx(header, txs) receipts, err := m.ProcessTx(header, txs)
if err != nil { if err != nil {
m.log.Error("failed to process tx", "err", err) m.log.Error("failed to process tx", "err", err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment