Skip to content

Commit

Permalink
fix: fixed conformity
Browse files Browse the repository at this point in the history
Signed-off-by: Logan Nguyen <[email protected]>
  • Loading branch information
quiet-node committed Nov 20, 2024
1 parent 3fa0638 commit 9f9fca1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/server/tests/acceptance/conformityTests.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ function splitReqAndRes(content) {
async function sendRequestToRelay(request, needError) {
try {
const response = await axios.post(relayUrl, request);
if (request.method === 'eth_sendRawTransaction') {
await global.relay.pollForValidTransactionReceipt(response.data.result);
}
return response.data;
} catch (error) {
console.error(error);
Expand Down

0 comments on commit 9f9fca1

Please sign in to comment.