Skip to content

Commit

Permalink
chore: proposed suppression of asm error
Browse files Browse the repository at this point in the history
  • Loading branch information
petertonysmith94 committed Dec 2, 2024
1 parent fae1dd8 commit 7814cef
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/account/src/utils/formatTransferToContractScriptData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ interface AssembleTransferToContractParams {
amount: BN;
}

// console.warn = (message) => {
// if (
// message ===
// 'using deprecated parameters for the initialization function; pass a single object instead'
// ) {
// return;
// }
// console.warn(message);
// };

export const formatTransferToContractScriptData = (
transferParams: Array<AssembleTransferToContractParams>
) => {
Expand Down

0 comments on commit 7814cef

Please sign in to comment.