Skip to content

Commit

Permalink
increase gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
redref committed Jun 28, 2024
1 parent 0a666c3 commit 1b69468
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pay/batch_payer.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,18 +81,18 @@
TX_FEES = {
"TZ1_TO_ALLOCATED_TZ1": {
"FEE": 298,
"GAS_LIMIT": 1400,
"GAS_LIMIT": 2500,
"STORAGE_LIMIT": 0, # 65 mutez before
},
"TZ1_TO_NON_ALLOCATED_TZ1": {
"FEE": 397,
"GAS_LIMIT": 1421,
"GAS_LIMIT": 2521,
"STORAGE_LIMIT": 277,
"BURN_FEE": None, # 0.257 tez before
},
"TZ1_REVEAL": {
"FEE": 357,
"GAS_LIMIT": 1400,
"GAS_LIMIT": 2500,
"STORAGE_LIMIT": 0,
},
}
Expand Down

0 comments on commit 1b69468

Please sign in to comment.