diff --git a/zetaclient/chains/bitcoin/observer/outbound.go b/zetaclient/chains/bitcoin/observer/outbound.go index 069f96c0a8..d5a2c13fd8 100644 --- a/zetaclient/chains/bitcoin/observer/outbound.go +++ b/zetaclient/chains/bitcoin/observer/outbound.go @@ -316,7 +316,7 @@ func (ob *Observer) getOutboundidByNonce(nonce uint64, test bool) (string, error } txid := send.GetCurrentOutboundParam().Hash if txid == "" { - return "", fmt.Errorf("getOutboundidByNonce: cannot find outbound txid for nonce %d", nonce) + return "", fmt.Errorf("getOutboundIDByNonce: cannot find outbound txid for nonce %d", nonce) } // make sure it's a real Bitcoin txid _, getTxResult, err := GetTxResultByHash(ob.rpcClient, txid)