Skip to content

Instantly share code, notes, and snippets.

@koras
Created April 11, 2018 00:10
Show Gist options
  • Save koras/bf67cb79d95a8904ffc33c5c43a920f3 to your computer and use it in GitHub Desktop.
Save koras/bf67cb79d95a8904ffc33c5c43a920f3 to your computer and use it in GitHub Desktop.
delete element
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