βοΈHow to configure the node?
// the config file
{
"db-max-open-files": 125,
"db-read-buffer-size": 128,
"db-threads": 4,
"db-write-buffer-size": 256
}Last updated
Run kryptokronad with arg --help will print all options.
Kryptokrona can start with these options by command line args, or use -c followed a json file for configuration.
The option in config file will unwrap the front --, for example:
// the config file
{
"db-max-open-files": 125,
"db-read-buffer-size": 128,
"db-threads": 4,
"db-write-buffer-size": 256
}If you want to check the default options, use --dump-config.
Last updated