mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
ADD: Forgot these files
This commit is contained in:
parent
47dc184036
commit
29f539d3fd
@ -91,4 +91,4 @@ module.exports.startUpdater = startUpdater;
|
||||
module.exports.STRUCT = STRUCT;
|
||||
module.exports.satoshiToLocalCurrency = satoshiToLocalCurrency;
|
||||
module.exports.satoshiToBTC = satoshiToBTC;
|
||||
module.exports.BTCToLocalCurrency = BTCToLocalCurrency;
|
||||
module.exports.BTCToLocalCurrency = BTCToLocalCurrency;
|
||||
|
@ -34,7 +34,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>161</string>
|
||||
<string>162</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
|
@ -505,10 +505,11 @@ export default class SendDetails extends Component {
|
||||
}}
|
||||
>
|
||||
<TextInput
|
||||
onChangeText={text => {
|
||||
onChangeText={text => {
|
||||
if (!this.processBIP70Invoice(text)) {
|
||||
this.setState({ address: text.replace(' ', ''), isLoading: false, bip70TransactionExpiration: null });
|
||||
}}}
|
||||
}
|
||||
}}
|
||||
placeholder={loc.send.details.address}
|
||||
numberOfLines={1}
|
||||
value={this.state.address}
|
||||
|
@ -232,12 +232,7 @@ export default class WalletTransactions extends Component {
|
||||
color: '#fff',
|
||||
}}
|
||||
>
|
||||
{loc
|
||||
.formatBalance(
|
||||
this.state.wallet.getBalance(),
|
||||
this.state.wallet.getPreferredBalanceUnit(),
|
||||
)
|
||||
.toString()}
|
||||
{loc.formatBalance(this.state.wallet.getBalance(), this.state.wallet.getPreferredBalanceUnit()).toString()}
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<Text style={{ backgroundColor: 'transparent' }} />
|
||||
|
Loading…
Reference in New Issue
Block a user