Skip to content

Commit

Permalink
Fix #161
Browse files Browse the repository at this point in the history
  • Loading branch information
neutralleiter committed Jan 7, 2018
1 parent ada03fd commit ce7a7b8
Showing 1 changed file with 0 additions and 127 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@
public class Config {
@JsonProperty("IS_TEST_NET")
private boolean isTestNet;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("GRAPHENE_CURRENT_DB_VERSION")
private String grapheneCurrentDbVersion;
@JsonProperty("SBD_SYMBOL")
private long sdbSymbol;
@JsonProperty("STEEMIT_100_PERCENT")
Expand Down Expand Up @@ -96,20 +89,6 @@ public class Config {
private String steemitChainId;
@JsonProperty("STEEMIT_COMMENT_REWARD_FUND_NAME")
private String steemitCommentRewardFundName;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_TEMP_LINEAR_REWARD_FUND_NAME")
private String steemitTempLinearRewardFundName;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_TEMP_LINEAR_REWARD_FUND_ID")
private int steemitTempLinearRewardFundId;
@JsonProperty("STEEMIT_CONTENT_APR_PERCENT")
private int steemitContentAprPercent;
@JsonProperty("STEEMIT_CONTENT_CONSTANT_HF0")
Expand Down Expand Up @@ -188,26 +167,11 @@ public class Config {
private int steemitMaxCommentDepthPreHf17;
@JsonProperty("STEEMIT_MAX_FEED_AGE_SECONDS")
private long steemitMaxFeedAgeSeconds;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_MAX_FEED_AGE")
private String steemitMaxFeedAge;
@JsonProperty("STEEMIT_MAX_INSTANCE_ID")
private String steemitMaxInstanceId;
@JsonProperty("STEEMIT_MAX_MEMO_SIZE")
private int steemitMaxMemoSize;
@JsonProperty("STEEMIT_MAX_WITNESSES")
private int steemitMaxWitnesses;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_MAX_MINER_WITNESSES")
private int steemitMaxMinerWitnesses;
@JsonProperty("STEEMIT_MAX_MINER_WITNESSES_HF0")
private int steemitMaxMinerWitnessesHf0;
@JsonProperty("STEEMIT_MAX_MINER_WITNESSES_HF17")
Expand All @@ -220,13 +184,6 @@ public class Config {
private long steemitMaxRationDecayRate;
@JsonProperty("STEEMIT_MAX_RESERVE_RATIO")
private int steemitMaxReserveRatio;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_MAX_RUNNER_WITNESSES")
private int steemitMaxRunnerWitnesses;
@JsonProperty("STEEMIT_MAX_RUNNER_WITNESSES_HF0")
private int steemitMaxRunnerWitnessesHf0;
@JsonProperty("STEEMIT_MAX_RUNNER_WITNESSES_HF17")
Expand All @@ -245,13 +202,6 @@ public class Config {
private int steemitMaxUrlLength;
@JsonProperty("STEEMIT_MAX_VOTE_CHANGES")
private int steemitMaxVoteChanges;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_MAX_VOTED_WITNESSES")
private int steemitMaxVotedWitnesses;
@JsonProperty("STEEMIT_MAX_VOTED_WITNESSES_HF0")
private int steemitMaxVotedWitnessesHf0;
@JsonProperty("STEEMIT_MAX_VOTED_WITNESSES_HF17")
Expand Down Expand Up @@ -342,13 +292,6 @@ public class Config {
private long steemitSDBInterestCompoundIntervalSec;
@JsonProperty("STEEMIT_SECONDS_PER_YEAR")
private long steemitSecondsPerYear;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_RECENT_RSHARES_DECAY_RATE")
private long steemitRecentRSharesDecayRate;
@JsonProperty("STEEMIT_RECENT_RSHARES_DECAY_RATE_HF19")
private long steemitRecentRSharesDecayRateHf19;
@JsonProperty("STEEMIT_RECENT_RSHARES_DECAY_RATE_HF17")
Expand Down Expand Up @@ -377,13 +320,6 @@ public class Config {
private String steemitSymbol;
@JsonProperty("STEEMIT_TEMP_ACCOUNT")
private String steemitTempAccount;
/**
* @deprecated Has been removed with HF 19. Depending on the version of the
* used Steem Node the value of this field may be null.
*/
@Deprecated
@JsonProperty("STEEMIT_UPVOTE_LOCKOUT")
private long steemitUpvoteLockout;
@JsonProperty("STEEMIT_UPVOTE_LOCKOUT_HF7")
private long steemitUpvoteLockoutHf7;
@JsonProperty("STEEMIT_UPVOTE_LOCKOUT_HF17")
Expand Down Expand Up @@ -427,13 +363,6 @@ public boolean getIsTestNet() {
return isTestNet;
}

/**
* @return the grapheneCurrentDbVersion
*/
public String getGrapheneCurrentDbVersion() {
return grapheneCurrentDbVersion;
}

/**
* @return the sdbSymbol
*/
Expand Down Expand Up @@ -637,20 +566,6 @@ public String getSteemitCommentRewardFundName() {
return steemitCommentRewardFundName;
}

/**
* @return the steemitTempLinearRewardFundName
*/
public String getSteemitTempLinearRewardFundName() {
return steemitTempLinearRewardFundName;
}

/**
* @return the steemitTempLinearRewardFundId
*/
public int getSteemitTempLinearRewardFundId() {
return steemitTempLinearRewardFundId;
}

/**
* @return the steemitContentAprPercent
*/
Expand Down Expand Up @@ -924,13 +839,6 @@ public long getSteemitMaxFeedAgeSeconds() {
return steemitMaxFeedAgeSeconds;
}

/**
* @return the steemitMaxFeedAge
*/
public String getSteemitMaxFeedAge() {
return steemitMaxFeedAge;
}

/**
* @return the steemitMaxInstanceId
*/
Expand All @@ -952,13 +860,6 @@ public int getSteemitMaxWitnesses() {
return steemitMaxWitnesses;
}

/**
* @return the steemitMaxMinerWitnesses
*/
public int getSteemitMaxMinerWitnesses() {
return steemitMaxMinerWitnesses;
}

/**
* @return the steemitMaxMinerWitnessesHf0
*/
Expand Down Expand Up @@ -1001,13 +902,6 @@ public int getSteemitMaxReserveRatio() {
return steemitMaxReserveRatio;
}

/**
* @return the steemitMaxRunnerWitnesses
*/
public int getSteemitMaxRunnerWitnesses() {
return steemitMaxRunnerWitnesses;
}

/**
* @return the steemitMaxRunnerWitnessesHf0
*/
Expand Down Expand Up @@ -1071,13 +965,6 @@ public int getSteemitMaxVoteChanges() {
return steemitMaxVoteChanges;
}

/**
* @return the steemitMaxVotedWitnesses
*/
public int getSteemitMaxVotedWitnesses() {
return steemitMaxVotedWitnesses;
}

/**
* @return the steemitMaxVotedWitnessesHf0
*/
Expand Down Expand Up @@ -1393,13 +1280,6 @@ public long getSteemitSecondsPerYear() {
return steemitSecondsPerYear;
}

/**
* @return the steemitRecentRSharesDecayRate
*/
public long getSteemitRecentRSharesDecayRate() {
return steemitRecentRSharesDecayRate;
}

/**
* @return the steemitRecentRSharesDecayRateHf19
*/
Expand Down Expand Up @@ -1498,13 +1378,6 @@ public String getSteemitTempAccount() {
return steemitTempAccount;
}

/**
* @return the steemitUpvoteLockout
*/
public long getSteemitUpvoteLockout() {
return steemitUpvoteLockout;
}

/**
* @return the steemitUpvoteLockoutHf7
*/
Expand Down

0 comments on commit ce7a7b8

Please sign in to comment.