Removed key for password that generates a key
This commit is contained in:
parent
8a43611232
commit
8db19f33e3
|
@ -75,5 +75,5 @@ OPENNODE_API_ENDPOINT=https://api.opennode.com/
|
||||||
OPENNODE_KEY=OPENNODE_ADMIN_KEY
|
OPENNODE_KEY=OPENNODE_ADMIN_KEY
|
||||||
|
|
||||||
# FakeWallet
|
# FakeWallet
|
||||||
FAKE_WALLET_KEY=E9873D79C6D87DC0FB6A5778633389F4453213303DA61F20BD67FC233AA33262
|
FAKE_WALLET_SECRET="ToTheMoon1"
|
||||||
LNBITS_DENOMINATION=sats
|
LNBITS_DENOMINATION=sats
|
|
@ -31,11 +31,12 @@ class FakeWallet(Wallet):
|
||||||
memo: Optional[str] = None,
|
memo: Optional[str] = None,
|
||||||
description_hash: Optional[bytes] = None,
|
description_hash: Optional[bytes] = None,
|
||||||
) -> InvoiceResponse:
|
) -> InvoiceResponse:
|
||||||
|
secret = getenv("FAKE_WALLET_SECRET")
|
||||||
data: Dict = {
|
data: Dict = {
|
||||||
"out": False,
|
"out": False,
|
||||||
"amount": amount,
|
"amount": amount,
|
||||||
"currency": "bc",
|
"currency": "bc",
|
||||||
"privkey": getenv("FAKE_WALLET_KEY"),
|
"privkey": hashlib.pbkdf2_hmac('sha256', secret.encode("utf-8"), ("FakeWallet").encode("utf-8"), 2048, 32).hex(),
|
||||||
"memo": None,
|
"memo": None,
|
||||||
"description_hash": None,
|
"description_hash": None,
|
||||||
"description": "",
|
"description": "",
|
||||||
|
@ -52,9 +53,9 @@ class FakeWallet(Wallet):
|
||||||
data["tags_set"] = ["d"]
|
data["tags_set"] = ["d"]
|
||||||
data["memo"] = memo
|
data["memo"] = memo
|
||||||
data["description"] = memo
|
data["description"] = memo
|
||||||
randomHash = hashlib.sha256(
|
randomHash = data["privkey"][:6] + hashlib.sha256(
|
||||||
str(random.getrandbits(256)).encode("utf-8")
|
str(random.getrandbits(256)).encode("utf-8")
|
||||||
).hexdigest()
|
).hexdigest()[6:]
|
||||||
data["paymenthash"] = randomHash
|
data["paymenthash"] = randomHash
|
||||||
payment_request = encode(data)
|
payment_request = encode(data)
|
||||||
checking_id = randomHash
|
checking_id = randomHash
|
||||||
|
@ -62,8 +63,12 @@ class FakeWallet(Wallet):
|
||||||
return InvoiceResponse(True, checking_id, payment_request)
|
return InvoiceResponse(True, checking_id, payment_request)
|
||||||
|
|
||||||
async def pay_invoice(self, bolt11: str) -> PaymentResponse:
|
async def pay_invoice(self, bolt11: str) -> PaymentResponse:
|
||||||
invoice = decode(bolt11)
|
invoice = decode(bolt11)
|
||||||
return PaymentResponse(True, invoice.payment_hash, 0)
|
if hasattr(invoice, 'checking_id') and invoice.checking_id[6:] == data["privkey"][:6]:
|
||||||
|
return PaymentResponse(True, invoice.payment_hash, 0)
|
||||||
|
else:
|
||||||
|
return PaymentResponse(ok = False, error_message="Only internal invoices can be used!")
|
||||||
|
|
||||||
|
|
||||||
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
||||||
return PaymentStatus(False)
|
return PaymentStatus(False)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user