Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed failing tests after adding back throw (bounce) for sint after sig #15

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tests/wallet-v5-internal.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ describe('Wallet V5 sign auth internal', () => {
(receipt.transactions[1].description as TransactionDescriptionGeneric)
.computePhase as TransactionComputeVm
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.053807902 TON

).exitCode
).toEqual(0);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

33

).toEqual(33);

expect(receipt.transactions).not.toHaveTransaction({
from: walletV5.address,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down
Loading