Skip to content

Commit

Permalink
Fix forgotten break in switch statement #1
Browse files Browse the repository at this point in the history
This omission is currently not disruptive, since the next case clause only contains a break.
  • Loading branch information
dmos62 committed May 10, 2020
1 parent addf5be commit 58db561
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ private boolean isBtcOutputOfBurnFeeTx(TempTxOutput tempTxOutput) {
long blindVoteFee = daoStateService.getParamValueAsCoin(Param.BLIND_VOTE_FEE, tempTxOutput.getBlockHeight()).value;
return availableInputValue == blindVoteFee;
}
break;
case VOTE_REVEAL:
break;
case LOCKUP:
Expand Down

0 comments on commit 58db561

Please sign in to comment.