请问这是什么问题 truffle版本5.1.4 web3版本1.0.0
module.exports = function(callback) {
current_time = Math.round(new Date() / 1000);
amt_1 = web3.utils.toWei(1, 'ether');
Contract.deployed().then(function(i) {i.myFunc('name_1', 'cate', 'Hash_2', 'Hash_1', current_time, current_time + 200, 2*amt_1, 0).then(function(f) {console.log(f)})});
Contract.deployed().then(function(i){i.myFunc2.call().then(function(f){console.log(f)})});
}