function withdrawTips() public { // The owner can only withdraw the tips tips = 0; owner.transfer(tips); }
function withdrawTips() public { // The owner can only withdraw the tips uint pendingTips = tips; tips = 0; owner.transfer(pendingTips); }