2020-03-09 21:14:07 +00:00
|
|
|
contract test {
|
2020-06-23 12:14:24 +00:00
|
|
|
constructor() payable {}
|
2020-03-09 21:14:07 +00:00
|
|
|
|
|
|
|
function getBalance() public returns (uint256 balance) {
|
|
|
|
return address(this).balance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// constructor(), 23 wei ->
|
|
|
|
// getBalance() -> 23
|