For the complete documentation index, see llms.txt. This page is also available as Markdown.

kaia_isParallelDBWrite

Returns true if the node is writing blockchain data in parallel manner. It is enabled by default.

Parameters

None

Return Value

Type
Description

Boolean

true means the node is writing blockchain data in parallel manner. It is false if the node is writing the data in serial manner.

Example

// Request
curl -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"kaia_isParallelDBWrite","id":1}' http://kaia.blockpi.network/v1/rpc/your-api-key

// Result
{
    "jsonrpc":"2.0",
    "id":1,
    "result":true
}

Last updated

Was this helpful?