* 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
6 lines
85 B
Solidity
6 lines
85 B
Solidity
contract C {
|
|
function f() public returns(bytes32){
|
|
return "abc";
|
|
}
|
|
}
|