mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 13:14:32 +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 PaymentCode paymentCode,
|
||||||
required int satoshiAmount,
|
required int satoshiAmount,
|
||||||
Map<String, dynamic>? args}) async {
|
Map<String, dynamic>? args}) async {
|
||||||
if (!(await hasConnected(paymentCode.notificationAddressP2PKH()))) {
|
if (!(await hasConnected(paymentCode.toString()))) {
|
||||||
throw PaynymSendException(
|
throw PaynymSendException(
|
||||||
"No notification transaction sent to $paymentCode");
|
"No notification transaction sent to $paymentCode");
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue