lndrpc/invoicesrpc+walletrpc: clean up imports

This commit is contained in:
Johan T. Halseth 2019-02-02 15:46:23 +01:00
parent 7dab8b8f2d
commit 3daaa8cf74
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26
2 changed files with 6 additions and 6 deletions

@ -4,14 +4,14 @@ package invoicesrpc
import (
"context"
"google.golang.org/grpc"
"gopkg.in/macaroon-bakery.v2/bakery"
"io/ioutil"
"os"
"path/filepath"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lntypes"
"google.golang.org/grpc"
"gopkg.in/macaroon-bakery.v2/bakery"
)
const (

@ -4,7 +4,7 @@ package walletrpc
import (
"bytes"
fmt "fmt"
"fmt"
"io/ioutil"
"os"
"path/filepath"
@ -12,10 +12,10 @@ import (
"github.com/btcsuite/btcd/wire"
"github.com/lightningnetwork/lnd/keychain"
"github.com/lightningnetwork/lnd/lnrpc"
signrpc "github.com/lightningnetwork/lnd/lnrpc/signrpc"
"github.com/lightningnetwork/lnd/lnrpc/signrpc"
"github.com/lightningnetwork/lnd/lnwallet"
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
"golang.org/x/net/context"
"google.golang.org/grpc"
"gopkg.in/macaroon-bakery.v2/bakery"
)