private void TabChanged(TabType tabType)
        {
            activeTabType = tabType;

            var transactionList = GetTransactionList();

            pagesSection.SetActive(transactionList?.Count > EthereumTransactionButtonManager.MAX_TRANSACTIONS_PER_PAGE);
            ResetPageSection();
        }
예제 #2
0
 /// <summary>
 /// Called when the transaction tab changes.
 /// </summary>
 /// <param name="tabType"> The new transaction tab type. </param>
 private void OnTransactionTabChanged(TabType tabType)
 {
     activeTabType = tabType;
     activePageNum = 0;
     ProcessNewAssetList();
 }