aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/util/test.html
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-20 09:34:12 +0800
committerobscuren <geffobscura@gmail.com>2014-12-20 09:34:12 +0800
commit3983dd2428137211f84f299f9ce8690c22f50afd (patch)
tree3a2dc53b365e6f377fc82a3514150d1297fe549c /cmd/mist/assets/util/test.html
parent7daa8c2f6eb25511c6a54ad420709af911fc6748 (diff)
parent0a9dc1536c5d776844d6947a0090ff7e1a7c6ab4 (diff)
downloadgo-tangerine-3983dd2428137211f84f299f9ce8690c22f50afd.tar.gz
go-tangerine-3983dd2428137211f84f299f9ce8690c22f50afd.tar.zst
go-tangerine-3983dd2428137211f84f299f9ce8690c22f50afd.zip
Merge branch 'release/v0.7.10'vv0.7.10
Diffstat (limited to 'cmd/mist/assets/util/test.html')
-rw-r--r--cmd/mist/assets/util/test.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/cmd/mist/assets/util/test.html b/cmd/mist/assets/util/test.html
new file mode 100644
index 000000000..d458e6670
--- /dev/null
+++ b/cmd/mist/assets/util/test.html
@@ -0,0 +1,43 @@
+<html>
+<head>
+<title>Utils</title>
+</head>
+<body onload="init();">
+<label>Nonce for 2ef47100e0787b915105fd5e3f4ff6752079d5cb</label>
+<p id="nonce"></p>
+
+<label>Connected peers</label>
+<p id="peers"></p>
+
+<label>Is mining</label>
+<p id="isMining"></p>
+
+<label>Is listening</label>
+<p id="isListen"></p>
+
+<label>Coinbase</label>
+<p id="coinbase"></p>
+
+<script type="text/javascript">
+
+function init() {
+ eth.getTxCountAt("2ef47100e0787b915105fd5e3f4ff6752079d5cb", function(nonce){
+ document.querySelector("#nonce").innerHTML = nonce;
+ })
+ eth.getPeerCount(function(peerLength){
+ document.querySelector("#peers").innerHTML = peerLength;
+ })
+ eth.getIsMining(function(mining){
+ document.querySelector("#isMining").innerHTML = mining;
+ })
+ eth.getIsListening(function(listen){
+ document.querySelector("#isListen").innerHTML = listen;
+ })
+ eth.getCoinBase(function(address){
+ document.querySelector("#coinbase").innerHTML = address;
+ })
+}
+</script>
+</body>
+</html>
+