Skip to content

Commit

Permalink
chore: fix amount of needed gas
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Mar 25, 2024
1 parent 7cd6575 commit 8e34ac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions forwarder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const NEAR_DEPOSIT_GAS: u64 = 2_000_000_000_000;
const FT_BALANCE_GAS: u64 = 2_000_000_000_000;
const FT_TRANSFER_GAS: u64 = 3_000_000_000_000;
const FT_TRANSFER_CALL_GAS: u64 = 50_000_000_000_000;
const CALCULATE_FEES_CALLBACK_GAS: u64 = 80_000_000_000_000;
const FINISH_FORWARD_GAS: u64 = 60_000_000_000_000;
const CALCULATE_FEES_CALLBACK_GAS: u64 = 90_000_000_000_000;
const FINISH_FORWARD_GAS: u64 = 70_000_000_000_000;

// Key is used for upgrading the smart contract.
// String representation of the key is: "ed25519:BaiF3VUJf5pxB9ezVtzH4SejpdYc7EA3SqrKczsj1wno";
Expand Down

0 comments on commit 8e34ac9

Please sign in to comment.