Commit d1f965f9 authored by Maurelian's avatar Maurelian

fix(ctb): Remove remaining entries from ownersBefore

parent ec882b18
...@@ -144,6 +144,7 @@ contract LivenessGuard is ISemver, BaseGuard { ...@@ -144,6 +144,7 @@ contract LivenessGuard is ISemver, BaseGuard {
for (uint256 i = 0; i < ownersBefore.length(); i++) { for (uint256 i = 0; i < ownersBefore.length(); i++) {
address ownerBefore = ownersBefore.at(i); address ownerBefore = ownersBefore.at(i);
delete lastLive[ownerBefore]; delete lastLive[ownerBefore];
ownersBefore.remove(ownerBefore);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment