簡體   English   中英

執行truffle.migrate時發生錯誤,“ undefined”的參數數量無效

[英]An error when executing truffle.migrate, Invalid number of parameters for “undefined”

我正在嘗試部署智能合約:

`
語用強度> = 0.4.21;

contract SimpleStorage {
uint public storedData;

constructor(uint initVal) public {
storedData = initVal;
}

function set(uint x) public {
storedData = x;
}

function get() view public returns (uint retVal) {
return storedData;
}
}`

我已經創建了2_deploy.js

var SimpleStorage = artifacts.require("SimpleStorage");

module.exports = function(deployer) {
// Pass 42 to the contract as the first constructor parameter
deployer.deploy(SimpleStorage, 42, {privateFor: 
["ROAZBWtSacxXQrOe3FGAqJDyJjFePR5ce4TSIzmJ0Bc="]})
};

但是當我執行truffle.migration時,出現以下錯誤:

 'Error encountered, bailing. Network state unknown. Review 
 successful transactions manually.
  Error: Invalid number of parameters for "undefined". Got 2 
  expected 1!
at Object.InvalidNumberOfParams 
 (/usr/lib/node_modules/truffle/build/webpack:/~/web3-eth- 
contract/~/web3-core-helpers/src/errors.js:32:1)
at Object._createTxObject 
(/usr/lib/node_modules/truffle/build/webpack:/~/web3-eth- 
contract/src/index.js:699:1)
 at Contract.deploy 
(/usr/lib/node_modules/truffle/build/webpack:/~/web3-eth- 
contract/src/index.js:504:1)
at Function.deploy 
(/usr/lib/node_modules/truffle/build/webpack:/packages/truffle- 
contract/lib/execute.js:214:1)
at constructor.detectNetwork.then.network 
(/usr/lib/node_modules/truffle/build/webpack:/packages/truffle- 
contract/lib/contract/constructorMethods.js:56:1)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)        
Truffle v5.0.13 (core: 5.0.13)
Node v8.9.4''

有誰知道如何處理這個問題?

Truffle直到最近才增加了對法定私人交易的支持。 因此,您需要Truffle 5.0.14版。 希望對您有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM