Browse Source

Merge #537: Fixed path for accessing wallets when receiving payjoin transactions

a0c8446 fixed location path for accessing wallets (Tim Akinbo)
master
Adam Gibson 6 years ago
parent
commit
fdb6b261d4
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 2
      scripts/receive-payjoin.py

2
scripts/receive-payjoin.py

@ -53,7 +53,7 @@ def receive_payjoin_main(makerclass):
# log.info (via P2EPMaker.user_info).
set_logging_level("INFO")
wallet_path = get_wallet_path(wallet_name, 'wallets')
wallet_path = get_wallet_path(wallet_name, None)
max_mix_depth = max([options.mixdepth, options.amtmixdepths - 1])
wallet = open_test_wallet_maybe(
wallet_path, wallet_name, max_mix_depth,

Loading…
Cancel
Save