Skip to content

Commit

Permalink
fix funding amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
Torres-ssf committed May 30, 2024
1 parent 4b87af6 commit 8955f97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/account/src/account.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,8 @@ describe('Account', () => {

const fakeCoins = sender.generateFakeResources(fakeCoinsConfig);
const request = new ScriptTransactionRequest({
gasLimit: bn(1500),
maxFee: bn(1700),
gasLimit: bn(60_000),
maxFee: bn(62_000),
});

request.addResources(fakeCoins);
Expand Down
6 changes: 3 additions & 3 deletions packages/fuel-gauge/src/predicate/predicate-general.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('Predicate', () => {
FuelGaugeProjectsEnum.PREDICATE_SUM
);

const amount1 = bn(100_000);
const amount1 = bn(500_000);
const amount2 = bn(200_000);
const amount3 = bn(300_000);
const amountToTransferBaseAsset = bn(1000);
Expand All @@ -46,8 +46,8 @@ describe('Predicate', () => {
const fakeCoins = predicate.generateFakeResources(fakeCoinsConfig);

let request = new ScriptTransactionRequest({
gasLimit: bn(1500),
maxFee: bn(1700),
gasLimit: bn(270_000),
maxFee: bn(250_000),
});

fakeCoins.forEach((coin) => {
Expand Down

0 comments on commit 8955f97

Please sign in to comment.