mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
doc for addrequest
This commit is contained in:
parent
d41785c783
commit
514ea6aa8c
1 changed files with 6 additions and 1 deletions
|
@ -522,7 +522,12 @@ class Commands:
|
||||||
|
|
||||||
@command('w')
|
@command('w')
|
||||||
def addrequest(self, amount, reason='', expiration=60*60):
|
def addrequest(self, amount, reason='', expiration=60*60):
|
||||||
"""Create a payment request. """
|
"""Create a payment request. If 'requests_dir' is set in your
|
||||||
|
configuration, a bip70 file will be written to that
|
||||||
|
directory. If you also set 'ssl_key_path' and 'ssl_cert_path',
|
||||||
|
the request will be signed with your certificate. Note that
|
||||||
|
the ssl_key_path file must contain the chain of certificates
|
||||||
|
up to a root CA."""
|
||||||
amount = int(Decimal(amount)*COIN)
|
amount = int(Decimal(amount)*COIN)
|
||||||
key = self.wallet.add_payment_request(self.config, amount, reason, expiration)
|
key = self.wallet.add_payment_request(self.config, amount, reason, expiration)
|
||||||
return self.wallet.get_payment_request(key) if key else False
|
return self.wallet.get_payment_request(key) if key else False
|
||||||
|
|
Loading…
Add table
Reference in a new issue