Change imports

This commit is contained in:
Yohan Graterol 2018-01-07 19:52:56 -05:00
parent d01e79ed5f
commit cd4ea64926
No known key found for this signature in database
GPG key ID: D8C4A70CC26A1F90
3 changed files with 7 additions and 7 deletions

View file

@ -35,9 +35,9 @@ import (
"io" "io"
"sort" "sort"
"github.com/ethereum/go-ethereum/crypto" "github.com/EthereumCommonwealth/go-callisto/crypto"
"github.com/ethereum/go-ethereum/crypto/sha3" "github.com/EthereumCommonwealth/go-callisto/crypto/sha3"
"github.com/ethereum/go-ethereum/rlp" "github.com/EthereumCommonwealth/go-callisto/rlp"
) )
const SizeLimit = 300 // maximum encoded size of a node record in bytes const SizeLimit = 300 // maximum encoded size of a node record in bytes

View file

@ -24,8 +24,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/ethereum/go-ethereum/crypto" "github.com/EthereumCommonwealth/go-callisto/crypto"
"github.com/ethereum/go-ethereum/rlp" "github.com/EthereumCommonwealth/go-callisto/rlp"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )

View file

@ -22,8 +22,8 @@ import (
"io" "io"
"net" "net"
"github.com/ethereum/go-ethereum/crypto" "github.com/EthereumCommonwealth/go-callisto/crypto"
"github.com/ethereum/go-ethereum/rlp" "github.com/EthereumCommonwealth/go-callisto/rlp"
) )
// Entry is implemented by known node record entry types. // Entry is implemented by known node record entry types.