File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
web-modal-sdk/blockchain-connection-examples/linea-modal-example/src/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments