Exemple #1
0
    /// <summary>
    /// Opens the Hope wallet.
    /// </summary>
    private void OpenHopeWallet()
    {
        userWalletManager.SetWalletType(UserWalletManager.WalletType.Hope);

        if (walletInfoManager.WalletCount > 0)
        {
            uiManager.OpenMenu <WalletListMenu>();
        }
        else
        {
            uiManager.OpenMenu <CreateWalletMenu>();
        }
    }