diff --git a/supernode/index.html b/supernode/index.html index f685261..afcdecd 100644 --- a/supernode/index.html +++ b/supernode/index.html @@ -7791,7 +7791,16 @@ case "broadcastBlockDataToAll": // TODO: Make a separate class for syncing if (typeof params.blockOwnerFLOAddress !== undefined) { - request.response = updateinDB("datablocks", params, params.id); + request.response = updateinDB("datablocks", params, params.id); + + // Update client nodes HTML for dataBlocks DB + readDB("datablocks", "00-01", function(blockData) { + document.getElementById("datablocksdiv").innerHTML = + `

Version: ${blockData.version}

+

Block Owner FLO Address: ${blockData.blockOwnerFLOAddress}

+

Block Signature: ${blockData.blockSignature}

+

Blockhash: ${blockData.blockhash}

` + }); } break; @@ -8385,6 +8394,7 @@