diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-04-10 20:45:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-10 20:45:13 +0800 |
commit | cdae1c59abc32f85debfa29577fbf1ed036ebf73 (patch) | |
tree | 1cead73084658ee9b15288d6ecab07bbf37cf90c /les/handler_test.go | |
parent | 14ae1246b789dd2a0a2bd22f0c7d3256daa26759 (diff) | |
parent | 0b00e19ed93512865dccdef1a340c27e6985aa82 (diff) | |
download | go-tangerine-1.8.26.tar go-tangerine-1.8.26.tar.gz go-tangerine-1.8.26.tar.bz2 go-tangerine-1.8.26.tar.lz go-tangerine-1.8.26.tar.xz go-tangerine-1.8.26.tar.zst go-tangerine-1.8.26.zip |
Merge pull request #19437 from zsfelfoldi/fix-sendtxv1.8.26
les: fix SendTx cost calculation and verify cost table
Diffstat (limited to 'les/handler_test.go')
-rw-r--r-- | les/handler_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/les/handler_test.go b/les/handler_test.go index 43be7f41b..a76848279 100644 --- a/les/handler_test.go +++ b/les/handler_test.go @@ -508,8 +508,9 @@ func TestTransactionStatusLes2(t *testing.T) { test := func(tx *types.Transaction, send bool, expStatus txStatus) { reqID++ if send { - cost := peer.GetRequestCost(SendTxV2Msg, 1) - sendRequest(peer.app, SendTxV2Msg, reqID, cost, types.Transactions{tx}) + enc, _ := rlp.EncodeToBytes(types.Transactions{tx}) + cost := peer.GetTxRelayCost(1, len(enc)) + sendRequest(peer.app, SendTxV2Msg, reqID, cost, rlp.RawValue(enc)) } else { cost := peer.GetRequestCost(GetTxStatusMsg, 1) sendRequest(peer.app, GetTxStatusMsg, reqID, cost, []common.Hash{tx.Hash()}) |