Skip to content

Commit

Permalink
fix(statics): modify gas tank factor
Browse files Browse the repository at this point in the history
TICKET: COIN-3243
  • Loading branch information
bhavidhingra committed Feb 26, 2025
1 parent afb5a59 commit 4c00d68
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions modules/sdk-coin-apt/test/unit/apt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ describe('APT:', function () {
tapt.getFullName().should.equal('Testnet Aptos');
tapt.getBaseFactor().should.equal(1e8);

aptStatics.gasTankLowBalanceAlertFactor.should.equal(400);
taptStatics.gasTankLowBalanceAlertFactor.should.equal(400);
aptStatics.gasTankMinBalanceRecommendationFactor.should.equal(1000);
taptStatics.gasTankMinBalanceRecommendationFactor.should.equal(1000);
aptStatics.gasTankLowBalanceAlertFactor.should.equal(80);
taptStatics.gasTankLowBalanceAlertFactor.should.equal(80);
aptStatics.gasTankMinBalanceRecommendationFactor.should.equal(200);
taptStatics.gasTankMinBalanceRecommendationFactor.should.equal(200);
});

it('is valid pub', function () {
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1161,8 +1161,8 @@ export const coins = CoinMap.fromCoins([
BaseUnit.APT,
APT_FEATURES,
KeyCurve.Ed25519,
400,
1000
80,
200
),
gasTankAccount(
'7aca10bf-79dd-428b-aeb6-54f03f9aec0f',
Expand All @@ -1174,8 +1174,8 @@ export const coins = CoinMap.fromCoins([
BaseUnit.APT,
APT_FEATURES,
KeyCurve.Ed25519,
400,
1000
80,
200
),
account(
'a08453f0-a3be-4875-b82b-6b0c9bfa53e6',
Expand Down

0 comments on commit 4c00d68

Please sign in to comment.