mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
use the ca list that ships with requests. update test.
This commit is contained in:
parent
b614a673eb
commit
13682cab1d
1 changed files with 9 additions and 4 deletions
|
@ -51,7 +51,7 @@ ACK_HEADERS = {'Content-Type':'application/bitcoin-payment','Accept':'applicatio
|
||||||
|
|
||||||
|
|
||||||
ca_list = {}
|
ca_list = {}
|
||||||
ca_path = os.path.expanduser("~/.electrum/ca/ca-bundle.crt")
|
ca_path = requests.certs.where()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -320,12 +320,17 @@ if __name__ == "__main__":
|
||||||
uri = sys.argv[1]
|
uri = sys.argv[1]
|
||||||
except:
|
except:
|
||||||
print "usage: %s url"%sys.argv[0]
|
print "usage: %s url"%sys.argv[0]
|
||||||
print "example url: \"bitcoin:mpu3yTLdqA1BgGtFUwkVJmhnU3q5afaFkf?r=https%3A%2F%2Fbitcoincore.org%2F%7Egavin%2Ff.php%3Fh%3D2a828c05b8b80dc440c80a5d58890298&amount=1\""
|
print "example url: \"bitcoin:17KjQgnXC96jakzJe9yo8zxqerhqNptmhq?amount=0.0018&r=https%3A%2F%2Fbitpay.com%2Fi%2FMXc7qTM5f87EC62SWiS94z\""
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
address, amount, label, message, request_url, url = util.parse_url(uri)
|
address, amount, label, message, request_url = util.parse_URI(uri)
|
||||||
pr = PaymentRequest(request_url)
|
from simple_config import SimpleConfig
|
||||||
|
config = SimpleConfig()
|
||||||
|
pr = PaymentRequest(config)
|
||||||
|
pr.read(request_url)
|
||||||
if not pr.verify():
|
if not pr.verify():
|
||||||
|
print 'verify failed'
|
||||||
|
print pr.error
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
print 'Payment Request Verified Domain: ', pr.domain
|
print 'Payment Request Verified Domain: ', pr.domain
|
||||||
|
|
Loading…
Add table
Reference in a new issue