Skip to content

Commit

Permalink
feat: Implement verbose output for transactions pipelines (#147)
Browse files Browse the repository at this point in the history
* feat: implement verbose output for classic pipeline

* feat: implement verbose output for soroban pipeline

* chore: bump version to 0.9.0
  • Loading branch information
fazzatti committed Jul 9, 2024
1 parent fcd9e37 commit cded0c7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/stellar-plus/core/contract-engine/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ export const CEError = {
contractInstanceMissingLiveUntilLedgerSeq,
contractCodeNotFound,
contractCodeMissingLiveUntilLedgerSeq,
contractEngineClassFailedToInitialize,
failedToUploadWasm,
failedToDeployContract,
failedToWrapAsset,
Expand Down
2 changes: 1 addition & 1 deletion src/stellar-plus/core/contract-engine/index.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ describe('ContractEngine', () => {
it('should read from a contract', async () => {
MOCKED_SOROBAN_TRANSACTION_PIPELINE.mockImplementation(() => {
return {
execute: jest.fn().mockResolvedValue({ output: { value: true } }),
execute: jest.fn().mockResolvedValue(true),
}
})

Expand Down

0 comments on commit cded0c7

Please sign in to comment.