Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sakit"
version = "14.1.9"
version = "14.1.10"
description = "Solana Agent Kit"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
license = "MIT"
Expand Down
3 changes: 2 additions & 1 deletion sakit/privy_trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,8 @@ async def _sign_and_execute( # pragma: no cover
send_result = await send_raw_transaction_with_priority(
rpc_url=self._rpc_url,
tx_bytes=tx_bytes,
skip_confirmation=False, # Now we can wait - blockhash is from our RPC
skip_preflight=False, # Run preflight to catch signature/signer errors
skip_confirmation=False, # Wait for confirmation - blockhash is from our RPC
confirm_timeout=30.0,
)

Expand Down
1 change: 1 addition & 0 deletions sakit/utils/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ async def send_raw_transaction_with_priority( # pragma: no cover
logger.debug(f"Could not get priority fee estimate: {fee_error}")

# Send the transaction
logger.info(f"Sending transaction with skip_preflight={skip_preflight}")
result = await client.send_raw_transaction(
tx_bytes,
opts=TxOpts(
Expand Down