Skip to content

Commit 22ee960

Browse files
committed
fix: calculateDaoMaximumWithdraw return type
1 parent c0dbdb9 commit 22ee960

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/neuron-wallet/src/services/wallets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ export default class WalletService {
707707
}
708708
}
709709

710-
public calculateDaoMaximumWithdraw = async (depositOutPoint: OutPoint, withdrawBlockHash: string): bigint => {
710+
public calculateDaoMaximumWithdraw = async (depositOutPoint: OutPoint, withdrawBlockHash: string): Promise<bigint> => {
711711
const calculateDaoMaximumWithdrawMethod = {
712712
name: 'calculateDaoMaximumWithdraw',
713713
method: 'calculate_dao_maximum_withdraw',

0 commit comments

Comments
 (0)