From fec6a799e6b78fe0818dbbaeedd2ca55269e5214 Mon Sep 17 00:00:00 2001 From: charliec Date: Mon, 6 Nov 2023 10:36:40 -0600 Subject: [PATCH] resolve conflict --- zetaclient/interfaces.go | 1 + 1 file changed, 1 insertion(+) diff --git a/zetaclient/interfaces.go b/zetaclient/interfaces.go index b2f17d9c90..f01fcc124c 100644 --- a/zetaclient/interfaces.go +++ b/zetaclient/interfaces.go @@ -91,6 +91,7 @@ type ZetaCoreBridger interface { // BTCRPCClient is the interface for BTC RPC client type BTCRPCClient interface { + GetNetworkInfo() (*btcjson.GetNetworkInfoResult, error) SendRawTransaction(tx *wire.MsgTx, allowHighFees bool) (*chainhash.Hash, error) ListUnspentMinMaxAddresses(minConf int, maxConf int, addrs []btcutil.Address) ([]btcjson.ListUnspentResult, error) EstimateSmartFee(confTarget int64, mode *btcjson.EstimateSmartFeeMode) (*btcjson.EstimateSmartFeeResult, error)