From 4cd918189546a991ad3a703e8c140246195b3bdb Mon Sep 17 00:00:00 2001 From: Skydev0h Date: Tue, 20 Feb 2024 23:50:42 +0200 Subject: [PATCH] Fixed failing tests after adding back throw (bounce) for sint after sig --- tests/wallet-v5-internal.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/wallet-v5-internal.spec.ts b/tests/wallet-v5-internal.spec.ts index b86f75e..8dc09e3 100644 --- a/tests/wallet-v5-internal.spec.ts +++ b/tests/wallet-v5-internal.spec.ts @@ -597,7 +597,7 @@ describe('Wallet V5 sign auth internal', () => { (receipt.transactions[1].description as TransactionDescriptionGeneric) .computePhase as TransactionComputeVm ).exitCode - ).toEqual(0); + ).toEqual(33); expect(receipt.transactions).not.toHaveTransaction({ from: walletV5.address, @@ -642,7 +642,7 @@ describe('Wallet V5 sign auth internal', () => { (receipt.transactions[1].description as TransactionDescriptionGeneric) .computePhase as TransactionComputeVm ).exitCode - ).toEqual(0); + ).toEqual(36); expect(receipt.transactions).not.toHaveTransaction({ from: walletV5.address, @@ -687,7 +687,7 @@ describe('Wallet V5 sign auth internal', () => { (receipt.transactions[1].description as TransactionDescriptionGeneric) .computePhase as TransactionComputeVm ).exitCode - ).toEqual(0); + ).toEqual(34); expect(receipt.transactions).not.toHaveTransaction({ from: walletV5.address, @@ -1166,7 +1166,7 @@ describe('Wallet V5 sign auth internal', () => { (receipt2.transactions[1].description as TransactionDescriptionGeneric) .computePhase as TransactionComputeVm ).exitCode - ).toEqual(0); + ).toEqual(33); expect(receipt2.transactions).not.toHaveTransaction({ from: walletV5.address,