Skip to content

Commit

Permalink
Merge branch 'fixSupportWalletLookup' of github.com:kajoseph/bitcore
Browse files Browse the repository at this point in the history
  • Loading branch information
kajoseph committed Oct 3, 2024
2 parents c54aa12 + a090ffe commit 439fb47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bitcore-wallet-service/src/lib/expressapp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ export class ExpressApp {
server => {
const opts = {
identifier: req.params['identifier'],
walletCheck: req.params['walletCheck']
walletCheck: ['1', 'true'].includes(req.query['walletCheck'])
};
server.getWalletFromIdentifier(opts, (err, wallet) => {
if (err) return returnError(err, res, req);
Expand Down

0 comments on commit 439fb47

Please sign in to comment.