From cdae0ac9240971afaf7766da1abb86f2c1802e2b Mon Sep 17 00:00:00 2001 From: "Fifo (Fabricius Zatti)" <62725221+fazzatti@users.noreply.github.com> Date: Wed, 1 May 2024 17:33:48 -0300 Subject: [PATCH] Minor fixes (#141) * feat: standardize network config options as functions under network * fix: duplicate imports * fix: read from contract output * chore: bump version * chore: bump version to 0.8.2 --- src/stellar-plus/core/contract-engine/index.unit.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stellar-plus/core/contract-engine/index.unit.test.ts b/src/stellar-plus/core/contract-engine/index.unit.test.ts index 110af93..b3f8126 100644 --- a/src/stellar-plus/core/contract-engine/index.unit.test.ts +++ b/src/stellar-plus/core/contract-engine/index.unit.test.ts @@ -641,7 +641,7 @@ describe('ContractEngine', () => { it('should read from a contract', async () => { MOCKED_SOROBAN_TRANSACTION_PIPELINE.mockImplementation(() => { return { - execute: jest.fn().mockResolvedValue(true), + execute: jest.fn().mockResolvedValue({ output: { value: true } }), } })