Blockchain Truffle Ошибка миграции - PullRequest
0 голосов
/ 08 июня 2018

миграция трюфелей Использование сети 'development'.

Running migration: 1_initial_migration.js   Deploying Migrations...
Error encountered, bailing. Network state unknown. Review successful
transactions manually. Error: Migrations contract constructor expected
1 arguments, received 0
    at /usr/local/lib/node_modules/truffle/build/webpack:/~/truffle-contract/contract.js:390:1

Мой файл Solidity (Migration.sol)

pragma solidity ^0.4.17;

contract Migrations {
  address public owner;
  uint public last_completed_migration;

  modifier restricted() {
    if (msg.sender == owner) _;
  }

  constructor(Migrations) public {
    owner = msg.sender;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }

  function upgrade(address new_address) public restricted {
    Migrations upgraded = Migrations(new_address);
    upgraded.setCompleted(last_completed_migration);
  }
}

Файл My Migration 1_initial_migration.js

var Migrations = artifacts.require("./Migrations.sol");

module.exports = function(deployer) {
  deployer.deploy(Migrations);
};

версия трюфеля Truffle v4.1.11 (ядро: 4.1.11) Солидность v0.4.24 (solc-js)

1 Ответ

0 голосов
/ 08 июня 2018

Удалите из функции конструктора параметр «Миграции», который нигде не используется.Это работает, когда я убираю аргумент "Миграции".Используйте как показано ниже:

constructor() public {
    owner = msg.sender;
  }
...