Add Local Bitcoin Address
This commit is contained in:
parent
f199348d0d
commit
4349e4ddf6
|
@ -12,6 +12,7 @@ mynode_block_height = 566000
|
||||||
bitcoin_blockchain_info = None
|
bitcoin_blockchain_info = None
|
||||||
bitcoin_recent_blocks = None
|
bitcoin_recent_blocks = None
|
||||||
bitcoin_peers = []
|
bitcoin_peers = []
|
||||||
|
bitcoin_network_info = None
|
||||||
bitcoin_wallet_info = None
|
bitcoin_wallet_info = None
|
||||||
bitcoin_mempool = None
|
bitcoin_mempool = None
|
||||||
bitcoin_version = None
|
bitcoin_version = None
|
||||||
|
@ -65,6 +66,7 @@ def update_bitcoin_other_info():
|
||||||
global bitcoin_blockchain_info
|
global bitcoin_blockchain_info
|
||||||
global bitcoin_recent_blocks
|
global bitcoin_recent_blocks
|
||||||
global bitcoin_peers
|
global bitcoin_peers
|
||||||
|
global bitcoin_network_info
|
||||||
global bitcoin_mempool
|
global bitcoin_mempool
|
||||||
global bitcoin_wallet_info
|
global bitcoin_wallet_info
|
||||||
|
|
||||||
|
@ -89,6 +91,9 @@ def update_bitcoin_other_info():
|
||||||
# Get peers
|
# Get peers
|
||||||
bitcoin_peers = rpc_connection.getpeerinfo()
|
bitcoin_peers = rpc_connection.getpeerinfo()
|
||||||
|
|
||||||
|
# Get network info
|
||||||
|
bitcoin_network_info = rpc_connection.getnetworkinfo()
|
||||||
|
|
||||||
# Get mempool
|
# Get mempool
|
||||||
bitcoin_mempool = rpc_connection.getmempoolinfo()
|
bitcoin_mempool = rpc_connection.getmempoolinfo()
|
||||||
|
|
||||||
|
@ -123,6 +128,10 @@ def get_bitcoin_peers():
|
||||||
global bitcoin_peers
|
global bitcoin_peers
|
||||||
return copy.deepcopy(bitcoin_peers)
|
return copy.deepcopy(bitcoin_peers)
|
||||||
|
|
||||||
|
def get_bitcoin_network_info():
|
||||||
|
global bitcoin_network_info
|
||||||
|
return copy.deepcopy(bitcoin_network_info)
|
||||||
|
|
||||||
def get_bitcoin_mempool():
|
def get_bitcoin_mempool():
|
||||||
global bitcoin_mempool
|
global bitcoin_mempool
|
||||||
return copy.deepcopy(bitcoin_mempool)
|
return copy.deepcopy(bitcoin_mempool)
|
||||||
|
|
|
@ -117,6 +117,7 @@ def bitcoind_status_page():
|
||||||
info = get_bitcoin_blockchain_info()
|
info = get_bitcoin_blockchain_info()
|
||||||
blockdata = get_bitcoin_recent_blocks()
|
blockdata = get_bitcoin_recent_blocks()
|
||||||
peerdata = get_bitcoin_peers()
|
peerdata = get_bitcoin_peers()
|
||||||
|
networkdata = get_bitcoin_network_info()
|
||||||
mempooldata = get_bitcoin_mempool()
|
mempooldata = get_bitcoin_mempool()
|
||||||
walletdata = get_bitcoin_wallet_info()
|
walletdata = get_bitcoin_wallet_info()
|
||||||
version = get_bitcoin_version()
|
version = get_bitcoin_version()
|
||||||
|
@ -167,6 +168,13 @@ def bitcoind_status_page():
|
||||||
|
|
||||||
peers.append(peer)
|
peers.append(peer)
|
||||||
|
|
||||||
|
# Local address
|
||||||
|
local_address = "..."
|
||||||
|
if networkdata != None:
|
||||||
|
local_address = "not none"
|
||||||
|
if "localaddresses" in networkdata:
|
||||||
|
local_address = "{}:{}".format(networkdata["localaddresses"][0]["address"], networkdata["localaddresses"][0]["port"])
|
||||||
|
|
||||||
# Balance
|
# Balance
|
||||||
walletinfo = {}
|
walletinfo = {}
|
||||||
walletinfo["balance"] = 0.0
|
walletinfo["balance"] = 0.0
|
||||||
|
@ -190,6 +198,7 @@ def bitcoind_status_page():
|
||||||
"title": "myNode Bitcoin Status",
|
"title": "myNode Bitcoin Status",
|
||||||
"blocks": blocks,
|
"blocks": blocks,
|
||||||
"peers": peers,
|
"peers": peers,
|
||||||
|
"local_address": local_address,
|
||||||
"difficulty": "{:.3g}".format(info["difficulty"]),
|
"difficulty": "{:.3g}".format(info["difficulty"]),
|
||||||
"block_num": info["blocks"],
|
"block_num": info["blocks"],
|
||||||
"header_num": info["headers"],
|
"header_num": info["headers"],
|
||||||
|
|
|
@ -90,6 +90,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="app_tile_row">
|
||||||
|
<div class="info_tile">
|
||||||
|
<div class="info_tile_header">Local Bitcoin Address / Port</div>
|
||||||
|
<div class="info_tile_contents">{{local_address}}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% if confirmed_balance > 0.0 %}
|
{% if confirmed_balance > 0.0 %}
|
||||||
<br/>
|
<br/>
|
||||||
<div class="main_header">Wallet balance</div>
|
<div class="main_header">Wallet balance</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user