mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
paynym send bug fix
This commit is contained in:
parent
c275f09869
commit
279d37c06e
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ mixin PaynymWalletInterface {
|
|||
{required PaymentCode paymentCode,
|
||||
required int satoshiAmount,
|
||||
Map<String, dynamic>? args}) async {
|
||||
if (!(await hasConnected(paymentCode.notificationAddressP2PKH()))) {
|
||||
if (!(await hasConnected(paymentCode.toString()))) {
|
||||
throw PaynymSendException(
|
||||
"No notification transaction sent to $paymentCode");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue