10 lines
219 B
Go
10 lines
219 B
Go
package lnd
|
|
|
|
import "github.com/davecgh/go-spew/spew"
|
|
|
|
func Request(request []byte) (string, int, error) {
|
|
// https://bitcoin.stackexchange.com/questions/73869/rpc-call-to-lnd
|
|
spew.Dump(request)
|
|
return "x", 1, nil
|
|
}
|