Truncate function is removed

This commit is contained in:
viktor 2017-11-16 20:27:27 +03:00
parent 017441b55e
commit 7584d064cb
1 changed files with 0 additions and 7 deletions

View File

@ -9,13 +9,6 @@ library Authorities {
}
return false;
}
function truncate (address[] storage self, uint len) internal {
for (uint i = len; i < self.length; i++) {
delete self[i];
}
self.length = len;
}
}
/// Library used only to test Signer library via rpc calls