Updated on 2026-08-14
This commit is contained in:
parent
47874b90f3
commit
4c2f78c5ef
8 changed files with 93 additions and 66 deletions
|
|
@ -94,9 +94,9 @@ public class ServerApiHelper {
|
|||
public void onResponse(@NonNull Call<String> call, @NonNull Response<String> response) {
|
||||
if (response.code() == 200) {
|
||||
estimateFeeListener.onInfuraEthGasPrice(blockCount, response.body());
|
||||
Log.i(TAG, "estimateFee onResponse " + response.code());
|
||||
Log.i(TAG, "estimateFee onResponse " + response.code() + " " + response.body());
|
||||
} else
|
||||
Log.e(TAG, "estimateFee onResponse " + response.code());
|
||||
Log.e(TAG, "estimateFee onResponse " + response.code());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -82,6 +82,10 @@ public class ConnectFeeTask extends FeeTask {
|
|||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
confirmPaymentActivity.getProgressBar().setVisibility(View.INVISIBLE);
|
||||
|
||||
DecimalFormat df = new DecimalFormat();
|
||||
|
|
@ -108,6 +112,9 @@ public class ConnectFeeTask extends FeeTask {
|
|||
}
|
||||
confirmPaymentActivity.setDtVerified(new Date());
|
||||
|
||||
|
||||
|
||||
|
||||
} else {
|
||||
|
||||
if (sharedCounter != null) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue