-
Notifications
You must be signed in to change notification settings - Fork 40
Closed
Description
Right now both get_raw_mempool and get_raw_mempool_verbose return the same non-verbose GetRawMempool type. Instead get_raw_mempool_verbose should return the GetRawMempoolVerbose type.
corepc/client/src/client_sync/v17/blockchain.rs
Lines 226 to 238 in 4ac08f6
| macro_rules! impl_client_v17__get_raw_mempool { | |
| () => { | |
| impl Client { | |
| pub fn get_raw_mempool(&self) -> Result<GetRawMempool> { | |
| // Equivalent to self.call("getrawmempool", &[into_json(false)?]) | |
| self.call("getrawmempool", &[]) | |
| } | |
| pub fn get_raw_mempool_verbose(&self) -> Result<GetRawMempool> { | |
| self.call("getrawmempool", &[into_json(true)?]) | |
| } | |
| } | |
| }; | |
| } |
Metadata
Metadata
Assignees
Labels
No labels