我正在運行的東西truffle console工作正常,但失敗truffle test。 的代碼是: contract Geekt {
address[] usersByAddress;
function registerNewUser(string handle, bytes32 city, bytes32 state, bytes32 country) public re
如何正確調用松露控制檯中的合同功能? 使用petshop示例項目,我成功將合同遷移到網絡上。 在松露控制檯I執行: var ad = Adoption.deployed()
這產生的答覆: undefined
當我執行ad.adopt(23);採用爲函數名和23爲單位參數;我得到的例外TypeError: ad.getAdopters is not a function 我在調用函數時出現