diff --git a/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs b/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs index b8cce9b4..328700df 100644 --- a/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs +++ b/Assets/Shared/Scripts/UI/LevelCompleteScreen.cs @@ -144,7 +144,7 @@ private async void OnContinueWithPassportButtonClicked() // Show 'Next' button ShowNextButton(true); ShowLoading(false); - // Take the player to the Create Wallet screen + // Take the player to the Setup Wallet screen m_SetupWalletEvent.Raise(); } catch (Exception ex) diff --git a/Assets/Shared/Scripts/UI/SetupWalletScreen.cs b/Assets/Shared/Scripts/UI/SetupWalletScreen.cs index 6924d7b7..13a27153 100644 --- a/Assets/Shared/Scripts/UI/SetupWalletScreen.cs +++ b/Assets/Shared/Scripts/UI/SetupWalletScreen.cs @@ -66,8 +66,8 @@ private async void SetupWallet() } catch (Exception ex) { - // Failed to create wallet, let the player try again - Debug.Log($"Failed to create wallet: {ex.Message}"); + // Failed to set up wallet, let the player try again + Debug.Log($"Failed to set up wallet: {ex.Message}"); ShowLoading(false); ShowError(true); ShowSuccess(false);