mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
WIP
This commit is contained in:
parent
07877161fd
commit
93b28f8809
@ -752,6 +752,6 @@ SPEC CHECKSUMS:
|
||||
Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
|
||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||
|
||||
PODFILE CHECKSUM: 0f43ca714eccbe358757a45c664df8e25bc7c146
|
||||
PODFILE CHECKSUM: b3a4c68ed1fc7dace2357d96ad07c3e104e0afe2
|
||||
|
||||
COCOAPODS: 1.9.3
|
||||
|
@ -143,6 +143,10 @@ const PsbtWithHardwareWallet = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const handleOnVerifyPressed = () => {
|
||||
Linking.openURL('https://coinb.in/?verify=' + txHex);
|
||||
};
|
||||
|
||||
const _renderBroadcastHex = () => {
|
||||
return (
|
||||
<View style={[styles.rootPadding, stylesHook.rootPadding]}>
|
||||
@ -153,7 +157,7 @@ const PsbtWithHardwareWallet = () => {
|
||||
<TouchableOpacity style={styles.hexTouch} onPress={Clipboard.setString}>
|
||||
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_copy}</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity style={styles.hexTouch} onPress={() => Linking.openURL('https://coinb.in/?verify=' + txHex)}>
|
||||
<TouchableOpacity style={styles.hexTouch} onPress={handleOnVerifyPressed}>
|
||||
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_verify}</Text>
|
||||
</TouchableOpacity>
|
||||
<BlueSpacing20 />
|
||||
|
Loading…
Reference in New Issue
Block a user