Skip to content

Commit

Permalink
rm logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hardingjam committed Feb 14, 2025
1 parent a140ab0 commit 44057c9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/ui-components/src/lib/stores/transactionStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,8 @@ const transactionStore = () => {

newTx = await getTransaction(subgraphUrl, txHash);
if (newTx) {
console.log("NEW TX", newTx)
clearInterval(interval);
transactionSuccess(txHash, successMessage);

} else if (attempts >= 10) {
update((state) => ({
...state,
Expand Down Expand Up @@ -165,7 +163,6 @@ const transactionStore = () => {
message: 'Confirming transaction...'
}));
const transactionSuccess = (hash: string, message?: string) => {
console.log("TRANSACTION SUCCESS", hash, message)
update((state) => ({
...state,
status: TransactionStatus.SUCCESS,
Expand Down

0 comments on commit 44057c9

Please sign in to comment.