2021-01-29 16:51:08 -05:00
|
|
|
package electrum
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"crypto/sha256"
|
|
|
|
"crypto/tls"
|
|
|
|
"encoding/hex"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/muun/recovery/utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
const defaultLoggerTag = "Electrum/?"
|
2022-03-26 13:01:26 -04:00
|
|
|
const connectionTimeout = time.Second * 30
|
2022-10-04 13:55:21 -04:00
|
|
|
const callTimeout = time.Second * 30
|
2021-01-29 16:51:08 -05:00
|
|
|
const messageDelim = byte('\n')
|
2022-10-04 13:55:21 -04:00
|
|
|
const noTimeout = 0
|
2021-01-29 16:51:08 -05:00
|
|
|
|
|
|
|
var implsWithBatching = []string{"ElectrumX"}
|
|
|
|
|
|
|
|
// Client is a TLS client that implements a subset of the Electrum protocol.
|
|
|
|
//
|
|
|
|
// It includes a minimal implementation of a JSON-RPC client, since the one provided by the
|
|
|
|
// standard library doesn't support features such as batching.
|
|
|
|
//
|
|
|
|
// It is absolutely not thread-safe. Every Client should have a single owner.
|
|
|
|
type Client struct {
|
|
|
|
Server string
|
|
|
|
ServerImpl string
|
|
|
|
ProtoVersion string
|
|
|
|
nextRequestID int
|
|
|
|
conn net.Conn
|
|
|
|
log *utils.Logger
|
2023-02-20 14:57:43 -05:00
|
|
|
requireTls bool
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Request models the structure of all Electrum protocol requests.
|
|
|
|
type Request struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Method string `json:"method"`
|
|
|
|
Params []Param `json:"params"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ErrorResponse models the structure of a generic error response.
|
|
|
|
type ErrorResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Error interface{} `json:"error"` // type varies among Electrum implementations.
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerVersionResponse models the structure of a `server.version` response.
|
|
|
|
type ServerVersionResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result []string `json:"result"`
|
|
|
|
}
|
|
|
|
|
2021-11-12 17:06:13 -05:00
|
|
|
// ServerFeaturesResponse models the structure of a `server.features` response.
|
|
|
|
type ServerFeaturesResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result ServerFeatures `json:"result"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerPeersResponse models the structure (or lack thereof) of a `server.peers.subscribe` response
|
|
|
|
type ServerPeersResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result []interface{} `json:"result"`
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// ListUnspentResponse models a `blockchain.scripthash.listunspent` response.
|
|
|
|
type ListUnspentResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result []UnspentRef `json:"result"`
|
|
|
|
}
|
|
|
|
|
2021-11-12 17:06:13 -05:00
|
|
|
// GetTransactionResponse models the structure of a `blockchain.transaction.get` response.
|
|
|
|
type GetTransactionResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result string `json:"result"`
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// BroadcastResponse models the structure of a `blockchain.transaction.broadcast` response.
|
|
|
|
type BroadcastResponse struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
Result string `json:"result"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnspentRef models an item in the `ListUnspentResponse` results.
|
|
|
|
type UnspentRef struct {
|
|
|
|
TxHash string `json:"tx_hash"`
|
|
|
|
TxPos int `json:"tx_pos"`
|
2021-03-17 14:28:04 -04:00
|
|
|
Value int64 `json:"value"`
|
2021-01-29 16:51:08 -05:00
|
|
|
Height int `json:"height"`
|
|
|
|
}
|
|
|
|
|
2021-11-12 17:06:13 -05:00
|
|
|
// ServerFeatures contains the relevant information from `ServerFeatures` results.
|
|
|
|
type ServerFeatures struct {
|
|
|
|
ID int `json:"id"`
|
|
|
|
GenesisHash string `json:"genesis_hash"`
|
|
|
|
HashFunction string `json:"hash_function"`
|
|
|
|
ServerVersion string `json:"server_version"`
|
|
|
|
ProcotolMin string `json:"protocol_min"`
|
|
|
|
ProtocolMax string `json:"protocol_max"`
|
|
|
|
Pruning int `json:"pruning"`
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// Param is a convenience type that models an item in the `Params` array of an Request.
|
|
|
|
type Param = interface{}
|
|
|
|
|
|
|
|
// NewClient creates an initialized Client instance.
|
2023-02-20 14:57:43 -05:00
|
|
|
func NewClient(requireTls bool) *Client {
|
2021-01-29 16:51:08 -05:00
|
|
|
return &Client{
|
2023-02-20 14:57:43 -05:00
|
|
|
log: utils.NewLogger(defaultLoggerTag),
|
|
|
|
requireTls: requireTls,
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Connect establishes a TLS connection to an Electrum server.
|
|
|
|
func (c *Client) Connect(server string) error {
|
|
|
|
c.Disconnect()
|
|
|
|
|
|
|
|
c.log.SetTag("Electrum/" + server)
|
|
|
|
c.Server = server
|
|
|
|
|
|
|
|
c.log.Printf("Connecting")
|
|
|
|
|
|
|
|
err := c.establishConnection()
|
|
|
|
if err != nil {
|
|
|
|
c.Disconnect()
|
|
|
|
return c.log.Errorf("Connect failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Before calling it a day send a test request (trust me), and as we do identify the server:
|
|
|
|
err = c.identifyServer()
|
|
|
|
if err != nil {
|
|
|
|
c.Disconnect()
|
|
|
|
return c.log.Errorf("Identifying server failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.log.Printf("Identified as %s (%s)", c.ServerImpl, c.ProtoVersion)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disconnect cuts the connection (if connected) to the Electrum server.
|
|
|
|
func (c *Client) Disconnect() error {
|
|
|
|
if c.conn == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c.log.Printf("Disconnecting")
|
|
|
|
|
|
|
|
err := c.conn.Close()
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Disconnect failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.conn = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SupportsBatching returns whether this client can process batch requests.
|
|
|
|
func (c *Client) SupportsBatching() bool {
|
|
|
|
for _, implName := range implsWithBatching {
|
|
|
|
if strings.HasPrefix(c.ServerImpl, implName) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerVersion calls the `server.version` method and returns the [impl, protocol version] tuple.
|
|
|
|
func (c *Client) ServerVersion() ([]string, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "server.version",
|
|
|
|
Params: []Param{},
|
|
|
|
}
|
|
|
|
|
|
|
|
var response ServerVersionResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, c.log.Errorf("ServerVersion failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Result, nil
|
|
|
|
}
|
|
|
|
|
2021-11-12 17:06:13 -05:00
|
|
|
// ServerFeatures calls the `server.features` method and returns the relevant part of the result.
|
|
|
|
func (c *Client) ServerFeatures() (*ServerFeatures, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "server.features",
|
|
|
|
Params: []Param{},
|
|
|
|
}
|
|
|
|
|
|
|
|
var response ServerFeaturesResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-11-12 17:06:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, c.log.Errorf("ServerFeatures failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &response.Result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServerPeers calls the `server.peers.subscribe` method and returns a list of server addresses.
|
|
|
|
func (c *Client) ServerPeers() ([]string, error) {
|
|
|
|
res, err := c.rawServerPeers()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err // note that, besides I/O errors, some servers close the socket on this request
|
|
|
|
}
|
|
|
|
|
|
|
|
var peers []string
|
|
|
|
|
|
|
|
for _, entry := range res {
|
|
|
|
// Get ready for some hot casting action. Not for the faint of heart.
|
|
|
|
addr := entry.([]interface{})[1].(string)
|
|
|
|
port := entry.([]interface{})[2].([]interface{})[1].(string)[1:]
|
|
|
|
|
|
|
|
peers = append(peers, addr+":"+port)
|
|
|
|
}
|
|
|
|
|
|
|
|
return peers, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// rawServerPeers calls the `server.peers.subscribe` method and returns this monstrosity:
|
2022-10-04 13:55:21 -04:00
|
|
|
//
|
|
|
|
// [ "<ip>", "<domain>", ["<version>", "s<SSL port>", "t<TLS port>"] ]
|
|
|
|
//
|
2021-11-12 17:06:13 -05:00
|
|
|
// Ports can be in any order, or absent if the protocol is not supported
|
|
|
|
func (c *Client) rawServerPeers() ([]interface{}, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "server.peers.subscribe",
|
|
|
|
Params: []Param{},
|
|
|
|
}
|
|
|
|
|
|
|
|
var response ServerPeersResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-11-12 17:06:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, c.log.Errorf("rawServerPeers failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Result, nil
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// Broadcast calls the `blockchain.transaction.broadcast` endpoint and returns the transaction hash.
|
|
|
|
func (c *Client) Broadcast(rawTx string) (string, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "blockchain.transaction.broadcast",
|
|
|
|
Params: []Param{rawTx},
|
|
|
|
}
|
|
|
|
|
|
|
|
var response BroadcastResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
|
|
|
return "", c.log.Errorf("Broadcast failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Result, nil
|
|
|
|
}
|
|
|
|
|
2021-11-12 17:06:13 -05:00
|
|
|
// GetTransaction calls the `blockchain.transaction.get` endpoint and returns the transaction hex.
|
|
|
|
func (c *Client) GetTransaction(txID string) (string, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "blockchain.transaction.get",
|
|
|
|
Params: []Param{txID},
|
|
|
|
}
|
|
|
|
|
|
|
|
var response GetTransactionResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-11-12 17:06:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return "", c.log.Errorf("GetTransaction failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Result, nil
|
|
|
|
}
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// ListUnspent calls `blockchain.scripthash.listunspent` and returns the UTXO results.
|
|
|
|
func (c *Client) ListUnspent(indexHash string) ([]UnspentRef, error) {
|
|
|
|
request := Request{
|
|
|
|
Method: "blockchain.scripthash.listunspent",
|
|
|
|
Params: []Param{indexHash},
|
|
|
|
}
|
|
|
|
var response ListUnspentResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
err := c.call(&request, &response, callTimeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, c.log.Errorf("ListUnspent failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return response.Result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListUnspentBatch is like `ListUnspent`, but using batching.
|
|
|
|
func (c *Client) ListUnspentBatch(indexHashes []string) ([][]UnspentRef, error) {
|
|
|
|
requests := make([]*Request, len(indexHashes))
|
2022-10-04 13:55:21 -04:00
|
|
|
method := "blockchain.scripthash.listunspent"
|
2021-01-29 16:51:08 -05:00
|
|
|
|
|
|
|
for i, indexHash := range indexHashes {
|
|
|
|
requests[i] = &Request{
|
2022-10-04 13:55:21 -04:00
|
|
|
Method: method,
|
2021-01-29 16:51:08 -05:00
|
|
|
Params: []Param{indexHash},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var responses []ListUnspentResponse
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
// Give it a little more time than non-batch calls
|
|
|
|
timeout := callTimeout * 2
|
|
|
|
|
|
|
|
err := c.callBatch(method, requests, &responses, timeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("ListUnspentBatch failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't forget to sort responses:
|
|
|
|
sort.Slice(responses, func(i, j int) bool {
|
|
|
|
return responses[i].ID < responses[j].ID
|
|
|
|
})
|
|
|
|
|
|
|
|
// Now we can collect all results:
|
|
|
|
var unspentRefs [][]UnspentRef
|
|
|
|
|
|
|
|
for _, response := range responses {
|
|
|
|
unspentRefs = append(unspentRefs, response.Result)
|
|
|
|
}
|
|
|
|
|
|
|
|
return unspentRefs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) establishConnection() error {
|
2023-02-20 14:57:43 -05:00
|
|
|
// We first try to connect over TCP+TLS
|
|
|
|
// If we fail and requireTls is false, we try over TCP
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
// TODO: check if insecure is necessary
|
|
|
|
config := &tls.Config{
|
|
|
|
InsecureSkipVerify: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
dialer := &net.Dialer{
|
|
|
|
Timeout: connectionTimeout,
|
|
|
|
}
|
|
|
|
|
2023-02-20 14:57:43 -05:00
|
|
|
tlsConn, err := tls.DialWithDialer(dialer, "tcp", c.Server, config)
|
|
|
|
if err == nil {
|
|
|
|
c.conn = tlsConn
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if c.requireTls {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := net.DialTimeout("tcp", c.Server, connectionTimeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.conn = conn
|
2023-02-20 14:57:43 -05:00
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) identifyServer() error {
|
|
|
|
serverVersion, err := c.ServerVersion()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c.ServerImpl = serverVersion[0]
|
|
|
|
c.ProtoVersion = serverVersion[1]
|
|
|
|
|
|
|
|
c.log.Printf("Identified %s %s", c.ServerImpl, c.ProtoVersion)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsConnected returns whether this client is connected to a server.
|
|
|
|
// It does not guarantee the next request will succeed.
|
|
|
|
func (c *Client) IsConnected() bool {
|
|
|
|
return c.conn != nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// call executes a request with JSON marshalling, and loads the response into a pointer.
|
2022-10-04 13:55:21 -04:00
|
|
|
func (c *Client) call(request *Request, response interface{}, timeout time.Duration) error {
|
2021-01-29 16:51:08 -05:00
|
|
|
// Assign a fresh request ID:
|
|
|
|
request.ID = c.incRequestID()
|
|
|
|
|
|
|
|
// Serialize the request:
|
|
|
|
requestBytes, err := json.Marshal(request)
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Marshal failed %v: %w", request, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the call, obtain the serialized response:
|
2022-10-04 13:55:21 -04:00
|
|
|
responseBytes, err := c.callRaw(request.Method, requestBytes, timeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
2022-10-04 13:55:21 -04:00
|
|
|
return c.log.Errorf("Send failed %s: %w", request.Method, err)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deserialize into an error, to see if there's any:
|
|
|
|
var maybeErrorResponse ErrorResponse
|
|
|
|
|
|
|
|
err = json.Unmarshal(responseBytes, &maybeErrorResponse)
|
|
|
|
if err != nil {
|
2022-10-04 13:55:21 -04:00
|
|
|
return c.log.Errorf("Unmarshal of potential error failed: %s %w", request.Method, err)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if maybeErrorResponse.Error != nil {
|
|
|
|
return c.log.Errorf("Electrum error: %v", maybeErrorResponse.Error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deserialize the response:
|
|
|
|
err = json.Unmarshal(responseBytes, response)
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Unmarshal failed %s: %w", string(responseBytes), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// call executes a batch request with JSON marshalling, and loads the response into a pointer.
|
|
|
|
// Response may not match request order, so callers MUST sort them by ID.
|
2022-10-04 13:55:21 -04:00
|
|
|
func (c *Client) callBatch(
|
|
|
|
method string, requests []*Request, response interface{}, timeout time.Duration,
|
|
|
|
) error {
|
2021-01-29 16:51:08 -05:00
|
|
|
// Assign fresh request IDs:
|
|
|
|
for _, request := range requests {
|
|
|
|
request.ID = c.incRequestID()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serialize the request:
|
|
|
|
requestBytes, err := json.Marshal(requests)
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Marshal failed %v: %w", requests, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the call, obtain the serialized response:
|
2022-10-04 13:55:21 -04:00
|
|
|
responseBytes, err := c.callRaw(method, requestBytes, timeout)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
2022-10-04 13:55:21 -04:00
|
|
|
return c.log.Errorf("Send failed %s: %w", method, err)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deserialize into an array of errors, to see if there's any:
|
|
|
|
var maybeErrorResponses []ErrorResponse
|
|
|
|
|
|
|
|
err = json.Unmarshal(responseBytes, &maybeErrorResponses)
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Unmarshal of potential error failed: %s %w", string(responseBytes), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Walk the responses, returning the first error found:
|
|
|
|
for _, maybeErrorResponse := range maybeErrorResponses {
|
|
|
|
if maybeErrorResponse.Error != nil {
|
|
|
|
return c.log.Errorf("Electrum error: %v", maybeErrorResponse.Error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deserialize the response:
|
|
|
|
err = json.Unmarshal(responseBytes, response)
|
|
|
|
if err != nil {
|
|
|
|
return c.log.Errorf("Unmarshal failed %s: %w", string(responseBytes), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// callRaw sends a raw request in bytes, and returns a raw response (or an error).
|
2022-10-04 13:55:21 -04:00
|
|
|
func (c *Client) callRaw(method string, request []byte, timeout time.Duration) ([]byte, error) {
|
|
|
|
c.log.Printf("Sending %s request", method)
|
|
|
|
c.log.Tracef("Sending %s body: %s", method, string(request))
|
2021-01-29 16:51:08 -05:00
|
|
|
|
|
|
|
if !c.IsConnected() {
|
2022-10-04 13:55:21 -04:00
|
|
|
return nil, c.log.Errorf("Send failed %s: not connected", method)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
request = append(request, messageDelim)
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
start := time.Now()
|
|
|
|
|
|
|
|
// SetDeadline is an absolute time based timeout. That is, we set an exact
|
|
|
|
// time we want it to fail.
|
|
|
|
var deadline time.Time
|
|
|
|
if timeout == noTimeout {
|
|
|
|
// This means no deadline
|
|
|
|
deadline = time.Time{}
|
|
|
|
} else {
|
|
|
|
deadline = start.Add(timeout)
|
|
|
|
}
|
|
|
|
err := c.conn.SetDeadline(deadline)
|
|
|
|
if err != nil {
|
|
|
|
return nil, c.log.Errorf("Send failed %s: SetDeadline failed", method)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = c.conn.Write(request)
|
|
|
|
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
2022-10-04 13:55:21 -04:00
|
|
|
duration := time.Now().Sub(start)
|
|
|
|
return nil, c.log.Errorf("Send failed %s after %vms: %w", method, duration.Milliseconds(), err)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
reader := bufio.NewReader(c.conn)
|
|
|
|
|
|
|
|
response, err := reader.ReadBytes(messageDelim)
|
2022-10-04 13:55:21 -04:00
|
|
|
duration := time.Now().Sub(start)
|
2021-01-29 16:51:08 -05:00
|
|
|
if err != nil {
|
2022-10-04 13:55:21 -04:00
|
|
|
return nil, c.log.Errorf("Receive failed %s after %vms: %w", method, duration.Milliseconds(), err)
|
2021-01-29 16:51:08 -05:00
|
|
|
}
|
|
|
|
|
2022-10-04 13:55:21 -04:00
|
|
|
c.log.Printf("Received %s after %vms", method, duration.Milliseconds())
|
|
|
|
c.log.Tracef("Received %s: %s", method, string(response))
|
2021-01-29 16:51:08 -05:00
|
|
|
|
|
|
|
return response, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) incRequestID() int {
|
|
|
|
c.nextRequestID++
|
|
|
|
return c.nextRequestID
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetIndexHash returns the script parameter to use with Electrum, given a Bitcoin address.
|
|
|
|
func GetIndexHash(script []byte) string {
|
|
|
|
indexHash := sha256.Sum256(script)
|
|
|
|
reverse(&indexHash)
|
|
|
|
|
|
|
|
return hex.EncodeToString(indexHash[:])
|
|
|
|
}
|
|
|
|
|
|
|
|
// reverse the order of the provided byte array, in place.
|
|
|
|
func reverse(a *[32]byte) {
|
|
|
|
for i, j := 0, len(a)-1; i < j; i, j = i+1, j-1 {
|
|
|
|
a[i], a[j] = a[j], a[i]
|
|
|
|
}
|
|
|
|
}
|