During the setup of acceptance tests the eth_sendRawTransaction flow for EIP 155 produced errors.
As such it was removed.
Error was
err: {
"type": "PrecheckStatusError",
"message": "transaction 0.0.2@1654127819.276547659 failed precheck with status WRONG_CHAIN_ID",
"stack":
StatusError: transaction 0.0.2@1654127819.276547659 failed precheck with status WRONG_CHAIN_ID
at new PrecheckStatusError (.../hedera-json-rpc-relay/packages/relay/node_modules/@hashgraph/sdk/lib/PrecheckStatusError.cjs:43:5)
at EthereumTransaction._mapStatusError (.../hedera-json-rpc-relay/packages/relay/node_modules/@hashgraph/sdk/lib/transaction/Transaction.cjs:1122:12)
at EthereumTransaction.execute (.../hedera-json-rpc-relay/packages/relay/node_modules/@hashgraph/sdk/lib/Executable.cjs:519:22)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
"name": "StatusError",
"status": {
"_code": 311
},
Solution
Add a test case that supports EIP_155 raw transaction submission
Problem
During the setup of acceptance tests the
eth_sendRawTransaction
flow for EIP 155 produced errors. As such it was removed.Error was
Solution
Add a test case that supports EIP_155 raw transaction submission
Alternatives
No response