Created
April 11, 2018 00:10
-
-
Save koras/bf67cb79d95a8904ffc33c5c43a920f3 to your computer and use it in GitHub Desktop.
delete element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function removeBids(uint32 _rabbitID) public onlyContract { | |
for (uint i = 0; i < bidsArray.length; i++) { | |
if (bidsArray[i].rabbitID == _rabbitID) { | |
delete bidsArray[i]; | |
bidsArray[i] = bidsArray[bidsArray.length-1]; | |
bidsCount--; | |
return; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment