Purges the cache of chain network ledger and recalculates it from chain file.
## Request Structure
`JSON object:`
```JSON
{
"method": "net",
"subcommand": ["ledger","reload"],
"arguments": {
"net": "network_name"
},
"id": "1"
}
```
`Parameters:`
**`net`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
### Curl Example
`Request:`
```powershell
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "net",
"subcommand": ["ledger","reload"],
"arguments": {
"net": "Backbone"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{}
],
"id": 1
}
```