We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd852c7 commit a578e85Copy full SHA for a578e85
framework/src/main/java/org/tron/common/application/ApplicationImpl.java
@@ -54,13 +54,13 @@ public void initServices(CommonParameter parameter) {
54
* start up the app.
55
*/
56
public void startup() {
57
+ this.initServices(Args.getInstance());
58
+ this.startServices();
59
if ((!Args.getInstance().isSolidityNode()) && (!Args.getInstance().isP2pDisable())) {
60
tronNetService.start();
61
}
62
consensusService.start();
63
MetricsUtil.init();
- this.initServices(Args.getInstance());
- this.startServices();
64
65
66
@Override
0 commit comments