well-goknown/lnd/lnd.go

10 lines
219 B
Go
Raw Normal View History

2023-02-03 04:56:15 +00:00
package lnd
import "github.com/davecgh/go-spew/spew"
2023-02-03 04:56:15 +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
spew.Dump(request)
return "x", 1, nil
2023-02-03 04:56:15 +00:00
}