Environment
Details
I’m learning by searching Google. I tried to use an example because I learned to transmit Ethereum, but an error occurs. We have enough Ethereum, and we have less than we have.
The error is as follows.
transact to joker.doSend errored: VM error: revert. revert The transaction has been reverted to the initial state. Note: The called function should be payable if you send value and the value you send should be less than your current balance.
Code to reproduce
pragma solidity >=0.5.0 <0.7.0;
contract joker {
address payable owner;
constructor() payable public{
owner = msg.sender;
}
function doSend(uint value) public{
owner.transfer(value);
}
}