aboutsummaryrefslogtreecommitdiffstats
path: root/Mist/assets/ext/test.html
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-19 19:33:15 +0800
committerobscuren <geffobscura@gmail.com>2014-09-19 19:34:37 +0800
commitae1de6593c31fbaa4429588cea2702dd5b01a722 (patch)
treed19c960d08524f0c5449ba87ab7ef4054b782b32 /Mist/assets/ext/test.html
parent723074e71bbe1638a5cec9b996b1eed07a76fd72 (diff)
downloadgo-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar.gz
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar.bz2
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar.lz
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar.xz
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.tar.zst
go-tangerine-ae1de6593c31fbaa4429588cea2702dd5b01a722.zip
renamed
Diffstat (limited to 'Mist/assets/ext/test.html')
-rw-r--r--Mist/assets/ext/test.html44
1 files changed, 0 insertions, 44 deletions
diff --git a/Mist/assets/ext/test.html b/Mist/assets/ext/test.html
deleted file mode 100644
index 4bac7d36f..000000000
--- a/Mist/assets/ext/test.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!doctype>
-<html>
-<head>
-<title>Tests</title>
-</head>
-
-<body>
-<button onclick="test();">Test me</button>
-
-<script type="text/javascript">
-function test() {
- var filter = eth.watch({
- latest: -1,
- from: "e6716f9544a56c530d868e4bfbacb172315bdead",
- altered: ["aabb", {id: "eeff", "at": "aabb"}],
- });
-
- filter.changed(function(messages) {
- console.log("messages", messages)
- })
-
- filter.getMessages(function(messages) {
- console.log("getMessages", messages)
- });
-
- eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(entries) {
- for(var i = 0; i < entries.length; i++) {
- console.log(entries[i].key, " : ", entries[i].value)
- }
- })
-
- eth.getBlock("f70097659f329a09642a27f11338d9269de64f1d4485786e36bfc410832148cd", function(block) {
- console.log(block)
- })
-
- eth.mutan("var a = 10", function(code) {
- console.log("code", code)
- });
-}
-</script>
-
-</body>
-
-</html>