Skip to content

Commit

Permalink
Revert "Revert "Remove dead field; update version""
Browse files Browse the repository at this point in the history
This reverts commit 25f4f88.
  • Loading branch information
Christian committed Feb 20, 2015
1 parent 25f4f88 commit 1027435
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>info.blockchain</groupId>
<artifactId>api</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<packaging>jar</packaging>

<name>api</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public class StatisticsResponse
private long btcMined;
private double difficulty;
private double minutesBetweenBlocks;
private double daysDestroyed;
private long numberOfTransactions;
private double hashRate;
private long timestamp;
Expand All @@ -47,7 +46,6 @@ public StatisticsResponse(String jsonString)
this.btcMined = s.get("n_btc_mined").getAsLong();
this.difficulty = s.get("difficulty").getAsDouble();
this.minutesBetweenBlocks = s.get("minutes_between_blocks").getAsDouble();
this.daysDestroyed = s.get("days_destroyed").getAsDouble();
this.numberOfTransactions = s.get("n_tx").getAsLong();
this.hashRate = s.get("hash_rate").getAsDouble();
this.timestamp = s.get("timestamp").getAsLong();
Expand Down Expand Up @@ -142,13 +140,6 @@ public double getMinutesBetweenBlocks()
{
return minutesBetweenBlocks;
}
/**
* @return Days destroyed in the past 24 hours
*/
public double getDaysDestroyed()
{
return daysDestroyed;
}
/**
* @return Number of transactions in the past 24 hours
*/
Expand Down

0 comments on commit 1027435

Please sign in to comment.