Update tests.

This commit is contained in:
Alexander Arlt
2019-11-01 14:54:47 -05:00
parent 793b906e05
commit cd3ad73b5a
109 changed files with 349 additions and 213 deletions
+2 -2
View File
@@ -52,12 +52,12 @@ Details are given in the following example.
// interface known to the compiler. Note the function
// without body. If a contract does not implement all
// functions it can only be used as an interface.
contract Config {
abstract contract Config {
function lookup(uint id) public returns (address adr);
}
contract NameReg {
abstract contract NameReg {
function register(bytes32 name) public;
function unregister() public;
}