#![allow(dead_code)]
pub(crate) const NOTIFICATION_METHOD_BLOCK_CONNECTED: &str = "blockconnected";
pub(crate) const NOTIFICATION_METHOD_BLOCK_DISCONNECTED: &str = "blockdisconnected";
pub(crate) const NOTIFICATION_METHOD_NEW_TICKETS: &str = "newtickets";
pub(crate) const NOTIFICATION_METHOD_WORK: &str = "work";
pub(crate) const NOTIFICATION_METHOD_TX_ACCEPTED: &str = "txaccepted";
pub(crate) const NOTIFICATION_METHOD_TX_ACCEPTED_VERBOSE: &str = "txacceptedverbose";
pub(crate) const NOTIFICATION_METHOD_STAKE_DIFFICULTY: &str = "stakedifficulty";
pub(crate) const NOTIFICATION_METHOD_REORGANIZATION: &str = "reorganization";
pub(crate) const METHOD_NOTIFY_BLOCKS: &str = "notifyblocks";
pub(crate) const METHOD_NOTIFY_NEW_TICKETS: &str = "notifynewtickets";
pub(crate) const METHOD_NOTIFIY_NEW_WORK: &str = "notifywork";
pub(crate) const METHOD_NEW_TX: &str = "notifynewtransactions";
pub(crate) const METHOD_GET_BLOCKCHAIN_INFO: &str = "getblockchaininfo";
pub(crate) const METHOD_GET_BLOCK_COUNT: &str = "getblockcount";
pub(crate) const METHOD_GET_BLOCK_HASH: &str = "getblockhash";
pub(crate) const METHOD_GET_BLOCK: &str = "getblock";
pub(crate) const METHOD_DECODE_RAW_TRANSACTION: &str = "decoderawtransaction";
pub(crate) const METHOD_ESTIMATE_SMART_FEE: &str = "estimatesmartfee";