From 19b2640e89465c1c57f1bbea0274d52d97151f60 Mon Sep 17 00:00:00 2001 From: Bas van Kervel Date: Wed, 16 Dec 2015 10:58:01 +0100 Subject: rpc: migrated the RPC insterface to a new reflection based RPC layer --- jsre/ethereum_js.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'jsre/ethereum_js.go') diff --git a/jsre/ethereum_js.go b/jsre/ethereum_js.go index 7063a90ec..94e4fde82 100644 --- a/jsre/ethereum_js.go +++ b/jsre/ethereum_js.go @@ -5740,7 +5740,9 @@ Property.prototype.extractCallback = function (args) { */ Property.prototype.attachToObject = function (obj) { var proto = { - get: this.buildGet() + //get: this.buildGet() + get: this.buildGet(), + enumerable: true }; var names = this.name.split('.'); -- cgit