From fd6c47aa44e15b6a5fca96d2e2308fe8c6f7e27b Mon Sep 17 00:00:00 2001 From: davaymne Date: Sun, 11 Sep 2022 23:29:08 +0100 Subject: [PATCH] Update stress_random.js As per task https://docs.google.com/spreadsheets/d/1rTmn-Niq-zAZnm6b1qaFS6I81No_NHBczYDWovn1zmQ/edit#gid=0, Methods: eth_getTransactionBy*******, eth_blockNumber, eth_getTransactionByBlockNumberAndIndex Should be eth_getTransactionBy* rather than eth_getTransactionReceipt --- test1/stress_random.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test1/stress_random.js b/test1/stress_random.js index 7c4dd3b..9d6aa77 100644 --- a/test1/stress_random.js +++ b/test1/stress_random.js @@ -28,9 +28,9 @@ export default function () { }, { jsonrpc: "2.0", - method: "eth_getTransactionReceipt", + method: "eth_getTransactionByHash", params: [ - "0xabfe871f8bdb0f526611e8620a4569cdd7617f7e2bbc377fe6ab5b2a27e76d6e", + "0xa3f6c173b0085c670683ab9fe3272aae1bf712c17d89fd0dbe784441b83c967f", ], id: 1, }, @@ -57,4 +57,4 @@ export default function () { }); //console.log(response); sleep(1); -} \ No newline at end of file +}