Skip to content

Commit

Permalink
Merge pull request #93 from eval-exec/patch-1
Browse files Browse the repository at this point in the history
Fix `fn get_fee_rate_statistics` return type
  • Loading branch information
quake authored Oct 25, 2023
2 parents b982f48 + 5b24731 commit f296e77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpc/ckb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ crate::jsonrpc!(pub struct CkbRpcClient {
pub fn get_block_median_time(&self, block_hash: H256) -> Option<Timestamp>;
pub fn get_block_economic_state(&self, block_hash: H256) -> Option<BlockEconomicState>;
pub fn estimate_cycles(&self, tx: Transaction)-> EstimateCycles;
pub fn get_fee_rate_statics(&self, tartet:Option<Uint64>)->FeeRateStatistics;
pub fn get_fee_rate_statistics(&self, tartet:Option<Uint64>)->FeeRateStatistics;
pub fn get_fee_rate_statics(&self, target:Option<Uint64>) -> Option<FeeRateStatistics>;
pub fn get_fee_rate_statistics(&self, target:Option<Uint64>) -> Option<FeeRateStatistics>;

// Indexer
pub fn get_indexer_tip(&self) -> Option<Tip>;
Expand Down

0 comments on commit f296e77

Please sign in to comment.