Add files via upload

This commit is contained in:
curly60e 2024-07-31 18:10:04 -03:00 committed by GitHub
parent 7157cf2a7a
commit 78bfcb10b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 10 deletions

View file

@ -77,9 +77,9 @@ async def display_blocks_info():
layout["main"].split_row(
Layout(name="recent_blocks", ratio=1),
)
layout["footer"].update(Text("Cypherpunk style..."))
layout["footer"].update(Text("Cypherpunk style loading..."))
layout["recent_blocks"].update(Panel(Text("Loading..."), title="Recent Blocks"))
layout["recent_blocks"].update(Panel(Text("Cypherpunk Style loading..."), title="Recent Blocks"))
layout["header"].update(Text("Block Monitor", style="bold cyan"))
block_tables = []

View file

@ -132,11 +132,11 @@ async def display_mempool_info():
)
layout["left"].split(Layout(name="mempool_info"), Layout(name="recent_blocks"))
layout["right"].split(Layout(name="mempool_chart"), Layout(name="mempool_transactions"))
layout["footer"].update(Text("Loading..."))
layout["footer"].update(Text("Cypherpunk Style loading..."))
layout["mempool_info"].update(Panel(Text("Loading..."), title="General Information"))
layout["mempool_chart"].update(Panel(Text("Loading..."), title="Mempool Flow"))
layout["recent_blocks"].update(Panel(Text("Loading..."), title="Last Blocks"))
layout["mempool_info"].update(Panel(Text("Cypherpunk Style loading..."), title="General Information"))
layout["mempool_chart"].update(Panel(Text("Cypherpunk Style loading..."), title="Mempool Flow"))
layout["recent_blocks"].update(Panel(Text("Cypherpunk Style loading..."), title="Last Blocks"))
layout["header"].update(Text("Mempool Monitor", style="bold magenta"))
mempool_data_points = []
@ -162,7 +162,7 @@ async def display_mempool_info():
layout["mempool_transactions"].update(Panel(mempool_transactions_table, title="Recent Transactions"))
layout["mempool_chart"].update(Panel(mempool_flow_chart, title="Mempool Flow"))
layout["footer"].update(Text(""))
layout["footer"].update(Text("Running the node."))
if __name__ == "__main__":
asyncio.run(display_mempool_info())

View file

@ -127,7 +127,7 @@ async def display_node_info():
Layout(name="orphan_info"),
)
layout["right"].split(Layout(name="net_totals"), Layout(name="peer_info"))
layout["footer"].update(Text("Loading..."))
layout["footer"].update(Text("Cypherpunk style..."))
layout["node_info"].update(Panel(Text("Loading..."), title="Node Information"))
layout["net_totals"].update(Panel(Text("Loading..."), title="Network Traffic"))

View file

@ -7,7 +7,7 @@ from blessings import Terminal
from execute_load_config import load_config
# Configura el archivo de registro
logging.basicConfig(filename='debug.log', level=logging.DEBUG, format='%(asctime)s %(message)s')
logging.basicConfig(filename='debug_peer_monitor.log', level=logging.DEBUG, format='%(asctime)s %(message)s')
# Load configuration
path, settings, settingsClock = load_config()

View file

@ -6,7 +6,7 @@ import numpy as np
from execute_load_config import load_config
# Configura el archivo de registro
logging.basicConfig(filename='debug.log', level=logging.DEBUG, format='%(asctime)s %(message)s')
logging.basicConfig(filename='debug_tx_search.log', level=logging.DEBUG, format='%(asctime)s %(message)s')
# Load configuration
path, settings, settingsClock = load_config()