Avalanche validator setup

Avalanche validator node is setting up bt when i am using bootstrap was false showing
“jsonrpc”:“2.0”,
“id” :1,
“method” :“info.isBootstrapped”,
“params”: {
“chain”:“X”
}
}’ -H ‘content-type:application/json;’ 127.0.0.1:9650/ext/info
{“jsonrpc”:“2.0”,“result”:{“isBootstrapped”:false},“id”:1}

i need this response below
{
“jsonrpc”: “2.0”,
“result”: {
“isBootstrapped”: true
},
“id”: 1
}

2 Likes

Has your node finished bootstrapping? You can monitor progress using the following

journalctl -u avalanchego -f

yes its working
Thanks for reply