private void initData() {
    addrId = getIntent().getStringExtra(GlobalAction.ProfileAction.EXTRA_KEY_ADDR_ID);
    Logger.e(TAG, "AddrId = " + addrId);

    updateDataStatus(DataStatus.LOADING);
    mContractLogic.getContractAddrInfo(addrId);
  }
 @Override
 protected void onReloadData() {
   updateDataStatus(DataStatus.LOADING);
   mContractLogic.getContractAddrInfo(addrId);
 }