mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
abe54cd7a2
* save state * fmt * save state * save state * fix resolve test * fix lint * fix test
50 lines
1.1 KiB
Solidity
50 lines
1.1 KiB
Solidity
pragma solidity >=0.5.0;
|
|
contract testcontract {
|
|
mapping(address => uint) public balances;
|
|
|
|
constructor() public {
|
|
balances[msg.sender] = 100;
|
|
}
|
|
|
|
function create(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
}
|
|
|
|
function update(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
}
|
|
|
|
function remove() public {
|
|
delete balances[msg.sender];
|
|
}
|
|
|
|
function createAndRevert(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
revert();
|
|
}
|
|
|
|
function updateAndRevert(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
revert();
|
|
}
|
|
|
|
function removeAndRevert() public {
|
|
delete balances[msg.sender];
|
|
revert();
|
|
}
|
|
|
|
function createAndException(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
assert(false);
|
|
}
|
|
|
|
function updateAndException(uint newBalance) public {
|
|
balances[msg.sender] = newBalance;
|
|
assert(false);
|
|
}
|
|
|
|
function removeAndException() public {
|
|
delete balances[msg.sender];
|
|
assert(false);
|
|
}
|
|
} |