Skip to content

Commit

Permalink
refactor: reword create wallet to set up
Browse files Browse the repository at this point in the history
  • Loading branch information
nattb8 committed May 29, 2024
1 parent 1233426 commit adfa179
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/Shared/Scripts/UI/LevelCompleteScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions Assets/Shared/Scripts/UI/SetupWalletScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit adfa179

Please sign in to comment.