Skip to content

Commit c39dd52

Browse files
committed
chore: remove console logs
1 parent 32736bb commit c39dd52

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

libs/ledger-live-common/src/families/aptos/js-getFeesForTransaction.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -109,18 +109,14 @@ export const getFee = async (
109109
return res;
110110
};
111111

112-
const getCacheKey = (transaction: Transaction): string => {
113-
console.log("#########");
114-
console.log(transaction);
115-
console.log("#########");
116-
return JSON.stringify({
112+
const getCacheKey = (transaction: Transaction): string =>
113+
JSON.stringify({
117114
amount: transaction.amount,
118115
gasUnitPrice: transaction.options.gasUnitPrice,
119116
maxGasAmount: transaction.options.maxGasAmount,
120117
sequenceNumber: transaction.options.sequenceNumber,
121118
expirationTimestampSecs: transaction.options.expirationTimestampSecs,
122119
});
123-
};
124120

125121
export const getEstimatedGas = async (
126122
account: Account,

0 commit comments

Comments
 (0)