Skip to content

Commit

Permalink
fix: check
Browse files Browse the repository at this point in the history
  • Loading branch information
devchenyan committed Jan 26, 2025
1 parent 76bf66c commit 44eb87a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/neuron-wallet/src/controllers/dao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class DaoController {
multisigConfig.m,
multisigConfig.n
)
const cells = await CellsService.getDaoCells({ walletId: '', lockArgs: multiSignBlake160 })
const cells = await CellsService.getDaoCells('', multiSignBlake160)

if (!cells) {
throw new ServiceHasNoResponse('DaoCells')
Expand Down
2 changes: 1 addition & 1 deletion packages/neuron-wallet/src/services/cells.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default class CellsService {
return cells
}

public static async getDaoCells({ walletId, lockArgs }: { walletId: string; lockArgs?: string }): Promise<Cell[]> {
public static async getDaoCells(walletId: string, lockArgs?: string): Promise<Cell[]> {
const outputs: OutputEntity[] = await getConnection()
.getRepository(OutputEntity)
.createQueryBuilder('output')
Expand Down

1 comment on commit 44eb87a

@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 12971031378

Please sign in to comment.