Skip to content

Commit 60c452d

Browse files
committed
fix(core): increase cu limit
1 parent 3aae610 commit 60c452d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async def build_and_send_transaction(
167167
# Add priority fee instructions if applicable
168168
if priority_fee is not None:
169169
fee_instructions = [
170-
set_compute_unit_limit(72_000), # Default compute unit limit
170+
set_compute_unit_limit(85_000), # Default compute unit limit
171171
set_compute_unit_price(priority_fee),
172172
]
173173
instructions = fee_instructions + instructions

0 commit comments

Comments
 (0)