Browse Source

Removed unused setting.

qdn
CalDescent 3 years ago
parent
commit
f58a16905f
  1. 4
      src/main/java/org/qortal/settings/Settings.java

4
src/main/java/org/qortal/settings/Settings.java

@ -214,8 +214,6 @@ public class Settings {
private int maxBlocksPerRequest = 100;
/** Maximum number of blocks this node will serve in a single response */
private int maxBlocksPerResponse = 200;
/** Maximum number of untrimmed blocks this node will serve in a single response */
private int maxUntrimmedBlocksPerResponse = 10;
// Which blockchains this node is running
private String blockchainConfig = null; // use default from resources
@ -709,8 +707,6 @@ public class Settings {
public int getMaxBlocksPerResponse() { return this.maxBlocksPerResponse; }
public int getMaxUntrimmedBlocksPerResponse() { return this.maxUntrimmedBlocksPerResponse; }
public boolean isAutoUpdateEnabled() {
return this.autoUpdateEnabled;
}

Loading…
Cancel
Save