Skip to content

Commit

Permalink
send window minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
noescape00 committed Feb 9, 2022
1 parent 840d598 commit 2e37c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/NFTWallet/Assets/Code/NFTWallet/Windows/SendWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void Awake()

ReceiptResponse receipt = await NFTWalletWindowManager.Instance.WaitTransactionWindow.DisplayUntilSCReceiptReadyAsync(sendTask);

bool success = receipt.Success;
bool success = receipt?.Success ?? false;

string resultString = string.Format("NFT send success: {0}", success);

Expand Down

0 comments on commit 2e37c12

Please sign in to comment.