Skip to content

Commit

Permalink
fix: calculateDaoMaximumWithdraw return type
Browse files Browse the repository at this point in the history
  • Loading branch information
classicalliu committed Nov 7, 2019
1 parent c0dbdb9 commit 22ee960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/neuron-wallet/src/services/wallets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ export default class WalletService {
}
}

public calculateDaoMaximumWithdraw = async (depositOutPoint: OutPoint, withdrawBlockHash: string): bigint => {
public calculateDaoMaximumWithdraw = async (depositOutPoint: OutPoint, withdrawBlockHash: string): Promise<bigint> => {
const calculateDaoMaximumWithdrawMethod = {
name: 'calculateDaoMaximumWithdraw',
method: 'calculate_dao_maximum_withdraw',
Expand Down

0 comments on commit 22ee960

Please sign in to comment.