Fix duplicate txServer getters and setters

This commit is contained in:
dotasek.dev 2024-05-09 15:26:20 -04:00
parent 743b2fb33f
commit 2c2e935f0a
1 changed files with 2 additions and 2 deletions

View File

@ -247,12 +247,12 @@ public class CliContext {
return this; return this;
} }
@JsonProperty("txServer") @JsonProperty("noEcosystem")
public boolean getNoEcosystem() { public boolean getNoEcosystem() {
return noEcosystem; return noEcosystem;
} }
@JsonProperty("txServer") @JsonProperty("noEcosystem")
public CliContext setNoEcosystem(boolean noEcosystem) { public CliContext setNoEcosystem(boolean noEcosystem) {
this.noEcosystem = noEcosystem; this.noEcosystem = noEcosystem;
return this; return this;