Skip to content

Commit 139e9cd

Browse files
committed
fix bug
1 parent 8069793 commit 139e9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/src/main/java/org/tron/core/services/http/GetNowSRAnnualizedRateOfReturnServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected void doGet(HttpServletRequest request, HttpServletResponse response) {
3939
double totalVote;
4040
double srVote;
4141
double ratio;
42-
if (wallet.existAddress(address)) {
42+
if (!wallet.existAddress(address)) {
4343
throw new AddressNotFound("address not found!");
4444
}
4545
srVote = wallet.queryNowVoteNumber(address);

0 commit comments

Comments
 (0)