Идентификатор не найден или не уникален.Ошибка компиляции - PullRequest
0 голосов
/ 23 ноября 2018

/ home / ubuntu / token_sale / contract / SandeepDappToken.sol: 17: 34: Ошибка объявления: Идентификатор не найден или не уникален. передача функции (адрес _to, unit256 _value )публичные возвраты (bool success) ^ —– ^ Компиляция не удаласьСм. Ниже код:

pragma solidity ^0.4.23;

contract SandeepDappToken
{
    // constructor

    // set the v ariable
    uint256  public totalSupply;

    string public name = ‘Dapp’;

    mapping(address => uint256) public balanceOf;

    constructor(uint256 _initialSupply )  public {
        balanceOf[msg.sender] = _initialSupply;
        totalSupply = _initialSupply;
    }

    function  transfer(address _to, unit256  _value) public returns (bool success)
    {
        require(balanceOf[msg.sender] >= _value);
    }
}

1 Ответ

0 голосов
/ 23 ноября 2018

Измените свой код:

unit256 на uint256

function  transfer(address _to, uint256  _value) public returns (bool success)
...