File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/neuron-wallet/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export default class DaoController {
3434 multisigConfig . m ,
3535 multisigConfig . n
3636 )
37- const cells = await CellsService . getDaoCells ( { walletId : '' , lockArgs : multiSignBlake160 } )
37+ const cells = await CellsService . getDaoCells ( '' , multiSignBlake160 )
3838
3939 if ( ! cells ) {
4040 throw new ServiceHasNoResponse ( 'DaoCells' )
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ export default class CellsService {
223223 return cells
224224 }
225225
226- public static async getDaoCells ( { walletId, lockArgs } : { walletId : string ; lockArgs ?: string } ) : Promise < Cell [ ] > {
226+ public static async getDaoCells ( walletId : string , lockArgs ?: string ) : Promise < Cell [ ] > {
227227 const outputs : OutputEntity [ ] = await getConnection ( )
228228 . getRepository ( OutputEntity )
229229 . createQueryBuilder ( 'output' )
You can’t perform that action at this time.
0 commit comments