/ 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);
}
}