Skip to content

Commit

Permalink
Merge branch 'master' into fix-bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kth-tw authored Feb 11, 2022
2 parents 320d788 + 2948377 commit 7483783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/service/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default class Channel extends AbstractService {
*/
public async updateAnchorPeer (data: ChannelUpdateAnchorPeerType): Promise<InfraRunnerResultType> {
logger.debug('Channel update anchor peer')
await this.updateAnchorPeerSteps().fetchChannelBlock(data)
await this.updateAnchorPeerSteps().fetchChannelConfig(data)
await this.updateAnchorPeerSteps().computeUpdateConfigTx(data)
await this.updateAnchorPeerSteps().signConfigTx(data)
return this.updateAnchorPeerSteps().updateChannelConfig(data)
Expand All @@ -82,7 +82,7 @@ export default class Channel extends AbstractService {
*/
public updateAnchorPeerSteps () {
return {
fetchChannelBlock: async (dto: ChannelUpdateAnchorPeerType): Promise<InfraRunnerResultType> => {
fetchChannelConfig: async (dto: ChannelUpdateAnchorPeerType): Promise<InfraRunnerResultType> => {
const { channelName } = dto
const signType = this.config.orgType

Expand Down

0 comments on commit 7483783

Please sign in to comment.