Adds visibility to compilation tests.

This commit is contained in:
Erik Kundt
2018-07-04 19:20:51 +02:00
parent 7101a89056
commit febbfd4204
42 changed files with 137 additions and 137 deletions
+2 -2
View File
@@ -60,8 +60,8 @@ contract tokenDB is safeMath, ownedDB {
allowance[owner][spender].nonce = nonce;
return true;
}
function getAllowance(address owner, address spender) view returns(bool success, uint256 remaining, uint256 nonce) {
function getAllowance(address owner, address spender) public view returns(bool success, uint256 remaining, uint256 nonce) {
/*
Get allowance from the database.