From 7b1a7b199d2d0c17d84111d4820984cbc85ab5ef Mon Sep 17 00:00:00 2001 From: etimofeeva Date: Tue, 23 Sep 2025 11:55:48 +0200 Subject: [PATCH] added better error handling --- bchain/coins/eth/ethrpc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bchain/coins/eth/ethrpc.go b/bchain/coins/eth/ethrpc.go index c054f415..91306396 100644 --- a/bchain/coins/eth/ethrpc.go +++ b/bchain/coins/eth/ethrpc.go @@ -1154,6 +1154,7 @@ func (b *EthereumRPC) SendRawTransaction(hex string, disableAlternativeRPC bool) if b.alternativeSendTxProvider.UseOnlyAlternativeProvider() { return txid, retErr } + retErr = nil } txid, retErr = b.callRpcStringResult("eth_sendRawTransaction", hex)