From c8aa5feb1487d3e7c0ea0f2233912afdbd5306d2 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 21 Oct 2014 00:14:58 +0200 Subject: [PATCH] Removed Key --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 939a4c65ba..c4f9895372 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@ function registerName() { var name = document.querySelector("#name").value; name = eth.fromAscii(name); - eth.transact({to: "NameReg", from: eth.key, gas: "10000", gasPrice: eth.gasPrice, data: [eth.fromAscii("register"), name]}).then(function(tx) { + eth.transact({to: "NameReg", gas: "10000", gasPrice: eth.gasPrice, data: [eth.fromAscii("register"), name]}).then(function(tx) { document.querySelector("#result").innerHTML = "Registered name. Please wait for the next block to come through."; }, function(err) { console.log(err);