This commit is contained in:
marcosrdz 2020-11-19 20:19:04 -05:00
parent 07877161fd
commit 93b28f8809
2 changed files with 6 additions and 2 deletions

View File

@ -752,6 +752,6 @@ SPEC CHECKSUMS:
Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
PODFILE CHECKSUM: 0f43ca714eccbe358757a45c664df8e25bc7c146
PODFILE CHECKSUM: b3a4c68ed1fc7dace2357d96ad07c3e104e0afe2
COCOAPODS: 1.9.3

View File

@ -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 />