2023-02-03 04:56:15 +00:00
|
|
|
package lnd
|
|
|
|
|
2023-02-04 22:40:45 +00:00
|
|
|
import "github.com/davecgh/go-spew/spew"
|
2023-02-03 04:56:15 +00:00
|
|
|
|
2023-02-04 22:40:45 +00:00
|
|
|
func Request(request []byte) (string, int, error) {
|
2023-02-03 04:56:15 +00:00
|
|
|
// https://bitcoin.stackexchange.com/questions/73869/rpc-call-to-lnd
|
2023-02-04 22:40:45 +00:00
|
|
|
spew.Dump(request)
|
|
|
|
return "x", 1, nil
|
2023-02-03 04:56:15 +00:00
|
|
|
}
|