我正在关注有关Udemy的以太坊Dapp教程。在课程开始的某个地方,我似乎偶然发现了一个错误。当问题出现时,我将部署初学者的合同并与Mocha进行测试。
我在网上找到了修复程序,但没有解决我的问题。我怀疑这与web3或solc的版本控制有关。我正在使用两个软件包的最新版本。我要学习的教程使用的旧版本已经折旧。
Inbox.sol
pragma solidity >=0.4.0 <0.6.0;
contract Inbox{
string message;
function set(string memory initialMessage) public {
message = initialMessage;
}
function setMessage(string memory newMessage) public{
message = newMessage;
}
}
Compile.js
const path = require('path');
const fs = require('fs');
const solc = require('solc');
const inboxPath = path.resolve(__dirname, 'contracts', 'Inbox.sol');
const source = fs.readFileSync(inboxPath, 'utf8');
module.exports = solc.compile(source, 1).contracts[':Inbox'];
Inbox.test.js:
const assert = require('assert');
const ganache = require('ganache-cli');
const Web3 = require('web3');
const web3 = new Web3(ganache.provider());
const {interface, bytecode} = require('../compile');
let accounts;
let inbox;
beforeEach(async ()=>{
accounts = await web3.eth.getAccounts();
inbox = await new web3.eth.Contract(JSON.parse(interface))
.deploy({
data: bytecode,
arguments:["Hi there!"]
})
.send({from:accounts[0] , gas: 1000000});
});
describe("Inbox", ()=>{
it("deploys a contract", () => {
console.log(inbox)
});
});
我的终端上的错误提示:
before each" hook for "deploys a contract":
Error: types/values length mismatch (count={"types":0,"values":1}, value={"types":[],"values":["Hi there!"]}, version=4.0.32)
at Object.throwError (node_modules\ethers\errors.js:76:17)
at AbiCoder.encode (node_modules\ethers\utils\abi-coder.js:922:20)
at AbiCoder.encodeParameters (node_modules\web3-eth-abi\dist\web3-eth-abi.cjs.js:45:34)
at MethodEncoder.encode (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:143:45)
at MethodsProxy.createMethod (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:556:57)
at MethodsProxy.executeMethod (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:534:23)
at Function.ContractMethod.send (node_modules\web3-eth-contract\dist\web3-eth-contract.cjs.js:505:29)
at Context.beforeEach (test\Inbox.test.js:19:6)
at process._tickCallback (internal/process/next_tick.js:68:7)
我的package.json:
{
"name": "inbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Ryan Arcel Galendez",
"license": "ISC",
"dependencies": {
"ganache-cli": "^6.4.4",
"mocha": "^6.1.4",
"solc": "^0.4.26",
"web3": "^1.0.0-beta.55"
}
我希望我的Mocha测试能够显示“成功”。
答案 0 :(得分:0)
问题在于您没有一个接受单个参数的构造函数,这就是为什么当您部署合同实例并传递初始消息“嗨,那里!”的原因。它失败了。
看起来您的set函数应该是基于参数名称的构造函数。
function set(string memory initialMessage) public {
message = initialMessage;
}
您应将function set
更改为constructor
pragma solidity >=0.4.0 <0.6.0;
contract Inbox{
string public message;
constructor(string memory initialMessage) public {
message = initialMessage;
}
function setMessage(string memory newMessage) public{
message = newMessage;
}
}
您可能希望使用Truffle和/或ZeppelinOS之类的工具来简化智能合约开发。