mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
e7574a6d14
* preserve order in batch * fix batch order * base fee in header json * less logs in tests * less logs in tests * save * save
9 lines
464 B
JavaScript
9 lines
464 B
JavaScript
// There is no response for all-notification batches.
|
|
|
|
--> [{"jsonrpc":"2.0","method":"test_echo","params":["x",99]}]
|
|
|
|
// This test checks regular batch calls.
|
|
|
|
--> [{"jsonrpc":"2.0","id":2,"method":"test_echo","params":[]}, {"jsonrpc":"2.0","id": 3,"method":"test_echo","params":["x",3]}]
|
|
<-- [{"jsonrpc":"2.0","id":2,"error":{"code":-32602,"message":"missing value for required argument 0"}},{"jsonrpc":"2.0","id":3,"result":{"String":"x","Int":3,"Args":null}}]
|