lbcd/rpcclient/examples/bitcoincorehttp/main.go

37 lines
946 B
Go
Raw Normal View History

// Copyright (c) 2014-2017 The btcsuite developers
2014-05-02 06:16:31 +02:00
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package main
import (
"log"
2014-07-03 02:33:54 +02:00
2018-05-15 05:44:11 +02:00
"github.com/btcsuite/btcd/rpcclient"
2014-05-02 06:16:31 +02:00
)
func main() {
// Connect to local bitcoin core RPC server using HTTP POST mode.
connCfg := &rpcclient.ConnConfig{
Host: "localhost:8332",
2014-05-02 06:16:31 +02:00
User: "yourrpcuser",
Pass: "yourrpcpass",
HTTPPostMode: true, // Bitcoin core only supports HTTP POST mode
2014-05-02 06:16:31 +02:00
DisableTLS: true, // Bitcoin core does not provide TLS by default
}
// Notice the notification parameter is nil since notifications are
// not supported in HTTP POST mode.
client, err := rpcclient.New(connCfg, nil)
2014-05-02 06:16:31 +02:00
if err != nil {
log.Fatal(err)
}
defer client.Shutdown()
// Get the current block count.
blockCount, err := client.GetBlockCount()
if err != nil {
log.Fatal(err)
}
log.Printf("Block count: %d", blockCount)
}