Esempio n. 1
0
    private static void tryFetchWallet(SuccessHandler success, ErrorHandler failure)
    {
        if (!IsAuthenticated)
        {
            Debug.LogWarning("Cannot get an Arbiter Wallet without first logging in");
            return;
        }

        ArbiterBinding.FetchWallet(success, failure);
    }