Skip to content

Commit

Permalink
Add include_tx_pool: Option<bool> to ChainRpc::get_live_cell
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed May 11, 2024
1 parent 673eb60 commit 4419031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc/ckb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ crate::jsonrpc!(pub struct CkbRpcClient {
pub fn get_epoch_by_number(&self, number: EpochNumber) -> Option<EpochView>;
pub fn get_header(&self, hash: H256) -> Option<HeaderView>;
pub fn get_header_by_number(&self, number: BlockNumber) -> Option<HeaderView>;
pub fn get_live_cell(&self, out_point: OutPoint, with_data: bool) -> CellWithStatus;
pub fn get_live_cell(&self, out_point: OutPoint, with_data: bool, include_tx_pool: Option<bool>) -> CellWithStatus;
pub fn get_tip_block_number(&self) -> BlockNumber;
pub fn get_tip_header(&self) -> HeaderView;
pub fn get_transaction(&self, hash: H256) -> Option<TransactionWithStatusResponse>;
Expand Down

0 comments on commit 4419031

Please sign in to comment.