File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sakit"
3- version = " 14.1.9 "
3+ version = " 14.1.10 "
44description = " Solana Agent Kit"
55authors = [" Bevan Hunt <bevan@bevanhunt.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change @@ -415,7 +415,8 @@ async def _sign_and_execute( # pragma: no cover
415415 send_result = await send_raw_transaction_with_priority (
416416 rpc_url = self ._rpc_url ,
417417 tx_bytes = tx_bytes ,
418- skip_confirmation = False , # Now we can wait - blockhash is from our RPC
418+ skip_preflight = False , # Run preflight to catch signature/signer errors
419+ skip_confirmation = False , # Wait for confirmation - blockhash is from our RPC
419420 confirm_timeout = 30.0 ,
420421 )
421422
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ async def send_raw_transaction_with_priority( # pragma: no cover
177177 logger .debug (f"Could not get priority fee estimate: { fee_error } " )
178178
179179 # Send the transaction
180+ logger .info (f"Sending transaction with skip_preflight={ skip_preflight } " )
180181 result = await client .send_raw_transaction (
181182 tx_bytes ,
182183 opts = TxOpts (
You can’t perform that action at this time.
0 commit comments