Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
cctdaniel committed Sep 12, 2024
1 parent d0ac2a6 commit 4aa6b91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion target_chains/ton/contracts/contracts/common/errors.fc
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ const int ERROR_INVALID_GOVERNANCE_MAGIC = 1035;
const int ERROR_INVALID_GOVERNANCE_MODULE = 1036;

;; Common
const int ERROR_INSUFFICIENT_GAS = 1037;
const int ERROR_INSUFFICIENT_GAS = 1037;
5 changes: 3 additions & 2 deletions target_chains/ton/contracts/tests/PythTest.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,9 @@ describe("PythTest", () => {

// Verify that the old data source is no longer valid
const oldDataSource = DATA_SOURCES[0];
const oldDataSourceIsValid =
await pythTest.getIsValidDataSource(oldDataSource);
const oldDataSourceIsValid = await pythTest.getIsValidDataSource(
oldDataSource
);
expect(oldDataSourceIsValid).toBe(false);
});

Expand Down

0 comments on commit 4aa6b91

Please sign in to comment.