mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-04 04:13:49 +01:00
FIX: crash on PSBT tx broadcast (when using with hardware wallet)
This commit is contained in:
parent
fb36be5a53
commit
954cb88ebf
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ export default class PsbtWithHardwareWallet extends Component {
|
||||||
console.log('send/psbtWithHardwareWallet - componentDidMount');
|
console.log('send/psbtWithHardwareWallet - componentDidMount');
|
||||||
}
|
}
|
||||||
|
|
||||||
broadcast() {
|
broadcast = () => {
|
||||||
this.setState({ isLoading: true }, async () => {
|
this.setState({ isLoading: true }, async () => {
|
||||||
try {
|
try {
|
||||||
await BlueElectrum.ping();
|
await BlueElectrum.ping();
|
||||||
|
@ -87,7 +87,7 @@ export default class PsbtWithHardwareWallet extends Component {
|
||||||
alert(error.message);
|
alert(error.message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
_renderScanner() {
|
_renderScanner() {
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Reference in a new issue