Shows status of checks for blocks signs structure validity

CLI Example

Command syntax:

esbocs check_signs_structure show 
-net <net_name> 
[-chain <chain_name>]

Options:

-net - name of the Cellframe Network. The list of networks can be found in the <Config_dir> \ etc \ network folder or received by The Cellframe-Node-CLI using command - net list
-chain - the name of Chain. The list of chains can be found in the directory <Config_dir> \ etc \ network \ <network_name> or by the Cellframe-Node-CLI using command - net list chains (optional)

Example:

Command:

cellframe-node-cli esbocs check_signs_structure show 
-net riemann 
-chain main

Response:

     Checking signs structure is: disabled

JSON-RPC Example

Command:

curl --unix-socket /opt/cellframe-node/var/run/node_cli 
-X POST http://localhost/connect 
-d '{"method":"esbocs", "params":["esbocs;check_signs_structure;show;-net;riemann;-chain;main"], "id":"1"}'

Response:

{
  "type"2,
  "result": [
    {
      "Checking signs structure is""disabled"
    }
  ],
  "errors"null,
  "id"1
}