8 lines
175 B
Go
8 lines
175 B
Go
package verifyer
|
|
|
|
import "github.com/btcsuite/btcd/rpcclient"
|
|
|
|
func NewBitcoindInterface(config rpcclient.ConnConfig) (Bitcoin, error) {
|
|
return rpcclient.New(&config, nil)
|
|
}
|