Skip to content

Commit 0862c5c

Browse files
committed
nit
1 parent 1d44664 commit 0862c5c

File tree

1 file changed

+2
-2
lines changed
  • web-modal-sdk/blockchain-connection-examples/linea-modal-example/src/utils

1 file changed

+2
-2
lines changed

web-modal-sdk/blockchain-connection-examples/linea-modal-example/src/utils/viemRPC.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,15 @@ const sendBundleTransaction = async (provider: IProvider): Promise<any> => {
158158
const signatureTx1 = await walletClient.signTransaction(requestTx1 as any);
159159
console.log("signatureTx1", signatureTx1);
160160

161-
// Send transaction
161+
// Prepare second transaction
162162
const requestTx2 = await walletClient.prepareTransactionRequest({
163163
nonce: nonce + 1,
164164
account: address[0],
165165
to: address[0],
166166
value: parseEther("0.004"),
167167
});
168168

169-
// Sign transaction
169+
// Sign second transaction
170170
const signatureTx2 = await walletClient.signTransaction(requestTx2 as any);
171171
console.log("signatureTx2", signatureTx2);
172172

0 commit comments

Comments
 (0)