@Override
    protected void onStartLoading() {
      super.onStartLoading();

      wallet.addEventListener(transactionAddRemoveListener, Threading.SAME_THREAD);
      broadcastManager.registerReceiver(
          walletChangeReceiver, new IntentFilter(WalletApplication.ACTION_WALLET_CHANGED));
      transactionAddRemoveListener.onReorganize(null); // trigger at least one reload

      safeForceLoad();
    }