Skip to content

Commit

Permalink
v1.4.32
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr committed Jan 8, 2024
1 parent 0da5da3 commit 75b853a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "warp-contracts",
"version": "1.4.31",
"version": "1.4.32",
"description": "An implementation of the SmartWeave smart contract protocol.",
"types": "./lib/types/index.d.ts",
"main": "./lib/cjs/index.js",
Expand Down
4 changes: 3 additions & 1 deletion src/__tests__/integration/basic/pst.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ describe('Testing the Profit Sharing Token', () => {
const result = await pst.readState();

expect(result.cachedValue.validity[interaction.originalTxId]).toBeFalsy();
expect(result.cachedValue.errorMessages[interaction.originalTxId]).toContain('Trying to call "view" function from a "write" action');
expect(result.cachedValue.errorMessages[interaction.originalTxId]).toContain(
'Trying to call "view" function from a "write" action'
);
});

it('should properly dispatch an event', async () => {
Expand Down

0 comments on commit 75b853a

Please sign in to comment.