Updated on 2026-08-14

This commit is contained in:
Tangem 2019-04-16 10:27:49 +03:00
parent 21ecd5e37b
commit 49ec774b9b
6 changed files with 27 additions and 16 deletions

View file

@ -587,7 +587,7 @@ public class EthEngine extends CoinEngine {
@Override
public void onSuccess(String method, InfuraResponse infuraResponse) {
if (method.equals(ServerApiInfura.INFURA_ETH_SEND_RAW_TRANSACTION)) {
if (infuraResponse.getResult().isEmpty()) {
if (infuraResponse.getResult()==null || infuraResponse.getResult().isEmpty()) {
ctx.setError("Rejected by node: " + infuraResponse.getError());
blockchainRequestsCallbacks.onComplete(false);
} else {