Skip to content

Commit

Permalink
fix(tip): indexer tip use older rpc method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryl-L committed Dec 9, 2022
1 parent 2e43919 commit a3eecba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion offchain-modules/packages/x/src/ckb/tx-helper/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class CkbIndexer implements Indexer {
}

async tip(): Promise<Tip> {
const res = await this.request('get_indexer_tip');
const res = await this.request('get_tip');
return res as Tip;
}

Expand Down

0 comments on commit a3eecba

Please sign in to comment.