Home > Blockchain >  At the time of submit the source code has been submitted to the contract name wrong
At the time of submit the source code has been submitted to the contract name wrong

Time:09-17

Sorry! The Compiled as Contract The ByteCode for 'messageBoard' does NOT match The Contract Creation Code for xeb8848826944b0db1078628a79927bd117d8bb27 [0].
Contract the name (s) found: 'messageBoard'
Unable to Verify the Contract source code.
Url
https://rinkeby.etherscan.io/verifyContract? A=0 xeb8848826944b0db1078628a79927bd117d8bb27

The source code
Pragma solidity ^ 0.4.24;
Contract messageBoard {
String public message;
Int public num=129;
Int public people=0;
The function messageBoard (string initMessage) public {
Message=initMessage;
}
The function editMessage (string _editMessage) public {
Message=_editMessage;
}
The function showMessage () public view {
Message='abcd';
}
The function pay () public payable {
People++;
}
}

CodePudding user response:

The solution? You and I meet the same problem
  • Related