diff --git a/src/views/StateSync.vue b/src/views/StateSync.vue
index e0c0dc7c..ea0b5d8a 100644
--- a/src/views/StateSync.vue
+++ b/src/views/StateSync.vue
@@ -35,8 +35,8 @@
class="my-1"
@change="check()"
/>
- 3. Start the daemon
- If you are resetting node, run unsafe-reset-all
before you start the daemon.
+ 3. Start the daemon: {{ daemon }} start
+ If you are resetting node, run {{ daemon }} unsafe-reset-all
or {{ daemon }} tendermint unsafe-reset-all --home ~/.HOME
before you start the daemon.
@@ -97,6 +97,7 @@ export default {
error: [],
state: '',
valid: false,
+ daemon: '',
snapshot: `[state-sync]
# snapshot-interval specifies the block interval at which local state sync snapshots are
# taken (0 to disable). Must be a multiple of pruning-keep-every.
@@ -125,6 +126,8 @@ trust_period = "168h" # 2/3 of unbonding time`
}
this.$http.getNodeInfo().then(res => {
this.version = res.application_version.version
+ console.log(res)
+ this.daemon = res.application_version.app_name
})
})
},