Skip to content

Commit

Permalink
fix: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
devchenyan committed Jan 24, 2025
1 parent 214c7e8 commit fd1c98f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/neuron-wallet/src/services/cells.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ import HdPublicKeyInfo from '../database/chain/entities/hd-public-key-info'
import CellLocalInfoService from './cell-local-info'
import CellLocalInfo from '../database/chain/entities/cell-local-info'
import { helpers } from '@ckb-lumos/lumos'
import logger from '../utils/logger'

export interface PaginationResult<T = any> {
totalCount: number
Expand Down Expand Up @@ -287,17 +286,13 @@ export default class CellsService {
}

public static async getMultisigDaoCells(multisigConfig: MultisigConfigModel): Promise<Cell[]> {
const script = Multisig.getMultisigScript(
const multiSignBlake160 = Multisig.hash(
multisigConfig.blake160s,
multisigConfig.r,
multisigConfig.m,
multisigConfig.n
)

const multiSignBlake160 = script.args.slice(0, 42)

logger.info('getMultisigDaoCells---multiSignBlake160----', multiSignBlake160)

const outputs: OutputEntity[] = await getConnection()
.getRepository(OutputEntity)
.createQueryBuilder('output')
Expand Down

1 comment on commit fd1c98f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Packaging for test is done in 12966713162

Please sign in to comment.