diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-26 21:01:00 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-01-26 21:01:00 +0800 |
commit | 63e76482ac0021afc80b504046c058b8d96891b2 (patch) | |
tree | 980e063693dae7fa6105646821ee6755b176b6e2 /jsre | |
parent | f2ab351e8d3b0a4e569ce56f6a4f17725ca5ba65 (diff) | |
parent | 19b2640e89465c1c57f1bbea0274d52d97151f60 (diff) | |
download | go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.gz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.bz2 go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.lz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.xz go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.tar.zst go-tangerine-63e76482ac0021afc80b504046c058b8d96891b2.zip |
Merge pull request #2140 from obscuren/rpc2-console
Rpc2 console
Diffstat (limited to 'jsre')
-rw-r--r-- | jsre/ethereum_js.go | 4 |
1 files changed, 3 insertions, 1 deletions
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('.'); |