We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a53e6d commit 8839f3eCopy full SHA for 8839f3e
packages/relay/src/lib/precheck.ts
@@ -59,9 +59,9 @@ export class Precheck {
59
networkGasPriceInWeiBars: number,
60
requestDetails: RequestDetails,
61
): Promise<void> {
62
- this.transactionSize(parsedTx);
63
- this.callDataSize(parsedTx);
64
this.contractCodeSize(parsedTx);
+ this.callDataSize(parsedTx);
+ this.transactionSize(parsedTx);
65
this.transactionType(parsedTx, requestDetails);
66
this.gasLimit(parsedTx, requestDetails);
67
const mirrorAccountInfo = await this.verifyAccount(parsedTx, requestDetails);
0 commit comments