Skip to content

Commit

Permalink
Fix sign error in Seed node snapshot diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
freimair committed Mar 7, 2019
1 parent 004634e commit 35914b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ void report() {
statistics.values().forEach((messageType, count) -> {
try {
report.put(OnionParser.prettyPrint(host) + ".relativeNumberOfMessages." + messageType,
String.valueOf(referenceValues.get(messageType).value() - ((Counter) count).value()));
String.valueOf(((Counter) count).value() - referenceValues.get(messageType).value()));
} catch (MalformedURLException ignore) {
log.error("we should never got here");
}
Expand Down

0 comments on commit 35914b8

Please sign in to comment.