Processes all datums for the selected chain of the network.

CLI Example

Command syntax:

mempool proc_all 
-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 - name of the chain

Example:

Command:

cellframe-node-cli mempool proc_all 
-net foobar 
-chain main

Response:

The entire mempool has been processed in foobar.main.

JSON-RPC Example

Command:

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

Response:

{
  "type": 2,
  "result": [
    "The entire mempool has been processed in foobar.main."
  ],
  "errors": null,
  "id": 1
}