diff --git a/src/ripple/consensus/DisputedTx.h b/src/ripple/consensus/DisputedTx.h index 93612e58184..adfa218dfaf 100644 --- a/src/ripple/consensus/DisputedTx.h +++ b/src/ripple/consensus/DisputedTx.h @@ -213,10 +213,6 @@ DisputedTx::updateVote( // This is basically the percentage of nodes voting 'yes' (including us) weight = (yays_ * 100 + (ourVote_ ? 100 : 0)) / (nays_ + yays_ + 1); - // VFALCO TODO Rename these macros and turn them into language - // constructs. consolidate them into a class that collects - // all these related values. - // // To prevent avalanche stalls, we increase the needed weight slightly // over time. if (percentTime < p.avMID_CONSENSUS_TIME)