Merge pull request #2580 from halseth/autopilotrpc-imports-cleanup

[trivial] cleanup subserver imports
This commit is contained in:
Olaoluwa Osuntokun 2019-02-04 12:46:53 -08:00 committed by GitHub
commit a98d5deeb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 7 deletions

@ -5,7 +5,6 @@ package autopilotrpc
import (
"context"
"encoding/hex"
"os"
"sync/atomic"
"github.com/btcsuite/btcd/btcec"

@ -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"
)