* Clean some unused variables * Add basic infrastructure * Add real eth regression tests * Use check_call * Suppress stdout * Make 705 work * Less error prone way of testing
10 lines
143 B
Solidity
10 lines
143 B
Solidity
contract SS {
|
|
address recvr;
|
|
function setme() {
|
|
recvr = msg.sender;
|
|
}
|
|
function sui() {
|
|
suicide(recvr);
|
|
}
|
|
}
|