当前位置:   article > 正文

solidity转账函数的实现(基于transfer)_solidity transfer函数

solidity transfer函数
contract cs{
    
    address public creator;
    
    constructor()public payable{
        creator = msg.sender;
    }
    
    function getETH()public{
	    require(
	            address(this).balance>=0.01 ether,
	            "合约没钱了,给合约打钱"
	            );
        address _owner = msg.sender;
        _owner.transfer(0.01 ether);
    }
    
    function()payable{
        
    }
    
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

Note:
使用这个合约的时候需要合约里面有以太
不然合约将无法给调用者发送以太
可以在创建合约时给合约发送一定的以太来测试

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/369234
推荐阅读
相关标签
  

闽ICP备14008679号