nebulasio / wiki

This repository is out of date, please check the new wiki:
http://wiki.nebulas.io/en/latest/
GNU General Public License v3.0
421 stars 154 forks source link

LocalContractStorage Cannot set property! #84

Closed xbhuang1994 closed 6 years ago

xbhuang1994 commented 6 years ago

var BankVaultContract = function () { LocalContractStorage.defineMapProperty(this, "userArray", null); ... init: function () { this.userArray = []; Test result:

{"result":"TypeError: Cannot set property userArray of # which has only a getter","execute_err":"Deploy: TypeError: Cannot set property userArray of # which has only a getter","estimate_gas":"25648"}

Where am I wrong?

xbhuang1994 commented 6 years ago

I found the problem, you should use defineProperty instead of defineMapProperty

ChengOrangeJu commented 6 years ago

@xbhuang1994 Congrats!