Skip to content

Commit 926f11e

Browse files
chore(txm): removed console log
1 parent 4537172 commit 926f11e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/txm/lib/BlockMonitor.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,13 @@ export class BlockMonitor {
2020
}
2121

2222
async start() {
23-
console.log("Starting block monitor")
2423
this.txmgr.viemClient.watchBlocks({
2524
onBlock: this.onNewBlock.bind(this),
2625
...(this.txmgr.transportProtocol === "http"
2726
? {
2827
pollingInterval: this.txmgr.pollingInterval,
2928
}
30-
: {})
29+
: {}),
3130
})
3231
}
3332

0 commit comments

Comments
 (0)