Skip to content

Commit 8839f3e

Browse files
committed
chore: rearranged data size prechecks
Signed-off-by: Logan Nguyen <logan.nguyen@swirldslabs.com>
1 parent 5a53e6d commit 8839f3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/relay/src/lib/precheck.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ export class Precheck {
5959
networkGasPriceInWeiBars: number,
6060
requestDetails: RequestDetails,
6161
): Promise<void> {
62-
this.transactionSize(parsedTx);
63-
this.callDataSize(parsedTx);
6462
this.contractCodeSize(parsedTx);
63+
this.callDataSize(parsedTx);
64+
this.transactionSize(parsedTx);
6565
this.transactionType(parsedTx, requestDetails);
6666
this.gasLimit(parsedTx, requestDetails);
6767
const mirrorAccountInfo = await this.verifyAccount(parsedTx, requestDetails);

0 commit comments

Comments
 (0)