v1.4.32
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
ppedziwiatr
2024-01-08 20:08:47 +01:00
parent 0da5da3e05
commit 75b853a8d8
2 changed files with 4 additions and 2 deletions

View File

@@ -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",

View File

@@ -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 () => {