Skip to content

Commit

Permalink
Update Send.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
nortonandreev committed Feb 3, 2025
1 parent a301cbf commit 53c6f8f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions web-wallet/src/lib/components/__tests__/Send.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ describe("Send", () => {
gasLimit: 20000000n,
gasPrice: 1n,
},
memo,
publicAddress,
shieldedAddress,
};
Expand Down Expand Up @@ -280,7 +279,7 @@ describe("Send", () => {
expect(baseProps.execute).toHaveBeenCalledWith(
shieldedAddress,
duskToLux(amount),
baseProps.memo,
memo,
baseProps.gasSettings.gasPrice,
baseProps.gasSettings.gasLimit
);
Expand Down Expand Up @@ -316,7 +315,7 @@ describe("Send", () => {
expect(baseProps.execute).toHaveBeenCalledWith(
shieldedAddress,
duskToLux(amount),
baseProps.memo,
memo,
baseProps.gasSettings.gasPrice,
baseProps.gasSettings.gasLimit
);
Expand Down Expand Up @@ -346,7 +345,7 @@ describe("Send", () => {
expect(baseProps.execute).toHaveBeenCalledWith(
shieldedAddress,
duskToLux(amount),
baseProps.memo,
memo,
baseProps.gasSettings.gasPrice,
baseProps.gasSettings.gasLimit
);
Expand Down

0 comments on commit 53c6f8f

Please sign in to comment.