supadark.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Blockpool {
address public owner;
uint256 public totalBalance;
constructor() {
owner = msg.sender;
}
function withdraw(uint256 amount) external {
require(msg.sender == owner);
require(amount <= totalBalance, "Insufficient");
payable(msg.sender)
LF
Line 6:23
UTF8
4 spaces
main
supadark.js
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Blockpool {
address public owner;
uint256 public totalBalance;
constructor() {
owner = msg.sender;
}
function withdraw(uint256 amount) external {
require(msg.sender == owner);
require(amount <= totalBalance, "Insufficient");
payable(msg.sender)
LF
Line 6:23
UTF8
4 spaces
main