Skip to content

Commit ed8bc24

Browse files
committed
style(sdk-coin-near): fix prettier formatting on signRecoveryTransaction call
Wrap long function call arguments to satisfy the project's line-length constraint enforced by prettier/eslint. Ticket: WCI-1223 Session-Id: 8de2a998-4754-4499-82b5-49167b8d9fd6 Task-Id: 7e0eb924-0c33-4cc6-9402-c71587bb14a5
1 parent f43e93f commit ed8bc24

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

modules/sdk-coin-near/src/near.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,13 @@ export class Near extends BaseCoin {
554554
token
555555
);
556556
} else {
557-
const serializedTx = await this.signRecoveryTransaction(txBuilder, params, derivationPath, senderAddress, isMpcV2);
557+
const serializedTx = await this.signRecoveryTransaction(
558+
txBuilder,
559+
params,
560+
derivationPath,
561+
senderAddress,
562+
isMpcV2
563+
);
558564
return { serializedTx: serializedTx, scanIndex: idx };
559565
}
560566
}

0 commit comments

Comments
 (0)