Skip to content

Commit

Permalink
patch config file output error
Browse files Browse the repository at this point in the history
  • Loading branch information
qoire committed Apr 11, 2018
1 parent 3bd70d2 commit 62d3984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modMcf/src/org/aion/mcf/config/CfgSync.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ public String toXML() {
// sub-element blocks-request-max
xmlWriter.writeCharacters("\r\n\t\t");
xmlWriter.writeStartElement("blocks-request-max");
xmlWriter.writeCharacters(this.getBlocksBackwardMax() + "");
xmlWriter.writeCharacters(this.getBlocksRequestMax() + "");
xmlWriter.writeEndElement();

// sub-element blocks-response-max
xmlWriter.writeCharacters("\r\n\t\t");
xmlWriter.writeStartElement("blocks-response-max");
xmlWriter.writeCharacters(this.getBlocksBackwardMax() + "");
xmlWriter.writeCharacters(this.getBlocksResponseMax() + "");
xmlWriter.writeEndElement();

// sub-element blocks-queue-max
Expand Down

0 comments on commit 62d3984

Please sign in to comment.