diff --git a/resources/views/livewire/banner/mempool-weather.blade.php b/resources/views/livewire/banner/mempool-weather.blade.php index 1f8ec2a3..8c5d7f7a 100644 --- a/resources/views/livewire/banner/mempool-weather.blade.php +++ b/resources/views/livewire/banner/mempool-weather.blade.php @@ -21,13 +21,13 @@ } = mempoolJS(); const blocksTipHeight = await blocks.getBlocksTipHeight(); that.height = blocksTipHeight; - console.log(blocksTipHeight); }; tip(); setInterval(tip, 10000); } }"> - + Blockhöhe @@ -54,7 +54,6 @@ ws.addEventListener('message', function incoming({data}) { const res = JSON.parse(data.toString()); if (res.block) { - console.log(res.block); } if (res.fees) { that.fastestFee = res.fees.fastestFee; @@ -62,7 +61,6 @@ that.hourFee = res.fees.hourFee; that.economyFee = res.fees.economyFee; that.minimumFee = res.fees.minimumFee; - console.log(res.fees); } }); };