Browse Source

Merge branch 'master' of github.com:BlueWallet/BlueWallet

zigzag
Overtorment 6 years ago
parent
commit
db6730ca35
  1. 2
      ios/BlueWallet/Info.plist
  2. 4
      screen/lnd/scanLndInvoice.js

2
ios/BlueWallet/Info.plist

@ -33,7 +33,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>210</string>
<string>212</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>

4
screen/lnd/scanLndInvoice.js

@ -95,7 +95,7 @@ export default class ScanLndInvoice extends React.Component {
decoded = await w.decodeInvoice(data);
let freeAmount = 0;
while (+decoded.num_satoshis === 0) {
freeAmount = await prompt('This is free amount invoice', 'How many satoshis do you want to tip?', false, 'numeric');
freeAmount = await prompt('This is free amount invoice', 'How many satoshis do you want to tip?', false, 'plain-text');
freeAmount = parseInt(freeAmount);
if (!isNaN(freeAmount) && freeAmount > 0) {
decoded.num_satoshis = freeAmount;
@ -184,7 +184,7 @@ export default class ScanLndInvoice extends React.Component {
onPress={async () => {
if (this.state.freeAmount) {
// must ask user again about the amount
let freeAmount = await prompt('This is free amount invoice', 'How many satoshis do you want to tip?', false, 'numeric');
let freeAmount = await prompt('This is free amount invoice', 'How many satoshis do you want to tip?', false, 'plain-text');
freeAmount = parseInt(freeAmount);
if (!isNaN(freeAmount) && freeAmount > 0) {
let decoded = this.state.decoded;

Loading…
Cancel
Save