btc: go to invoice screen only after receiving psbt

This commit is contained in:
pkova 2021-04-14 20:37:27 +03:00 committed by ixv
parent b3d0919cba
commit 4c22a439e4

View File

@ -34,7 +34,9 @@ export default class Send extends Component {
}
}
this.props.api.btcWalletCommand(command).then(
(res) => console.log({res})
(res) => {
this.setState({signing: true});
}
);
}
@ -133,7 +135,6 @@ export default class Send extends Component {
px='24px'
onClick={() =>{
this.initPayment()
this.setState({signing: true})
}}
/>
</Row>