Browse Source

fix hexlify bytes -> str.

fee_issues
fiatjaf 5 years ago
parent
commit
1812b4a803
  1. 4
      LNbits/bolt11.py
  2. 45
      LNbits/templates/wallet.html

4
LNbits/bolt11.py

@ -49,9 +49,9 @@ def decode(pr: str) -> Invoice:
if tag == "d": if tag == "d":
invoice.description = trim_to_bytes(tagdata).decode("utf-8") invoice.description = trim_to_bytes(tagdata).decode("utf-8")
elif tag == "h" and data_length == 52: elif tag == "h" and data_length == 52:
invoice.description = hexlify(trim_to_bytes(tagdata)) invoice.description = str(hexlify(trim_to_bytes(tagdata)))
elif tag == "p" and data_length == 52: elif tag == "p" and data_length == 52:
invoice.payment_hash = hexlify(trim_to_bytes(tagdata)) invoice.payment_hash = str(hexlify(trim_to_bytes(tagdata)))
return invoice return invoice

45
LNbits/templates/wallet.html

@ -72,31 +72,32 @@
<i class="ion ion-flash"></i> <i class="ion ion-flash"></i>
</div> </div>
</div> </div>
<!-- ./col --> </div>
</div>
<!-- ./col -->
<!-- /.row --> <!-- /.row -->
<div class="row"> <div class="row">
<div class="col-sm-3"> <div class="col-sm-3">
<button <button
onclick="sendfundsinput()" onclick="sendfundsinput()"
class="btn btn-block btn-primary btn-lg" class="btn btn-block btn-primary btn-lg"
> >
Send Send
</button> </button>
</div> </div>
<div class="col-sm-3"> <div class="col-sm-3">
<button <button onclick="receive()" class="btn btn-block btn-primary btn-lg">
onclick="receive()" Receive
class="btn btn-block btn-primary btn-lg" </button>
>
Receive
</button>
</div>
</div>
</div> </div>
</div>
<div id="receive"></div> <div class="row">
<div id="sendfunds"></div> <div class="col-sm-12">
<div id="receive"></div>
<div id="sendfunds"></div>
</div>
</div> </div>
<div class="row"> <div class="row">

Loading…
Cancel
Save