mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-21 19:20:37 +00:00
Updated module path
This commit is contained in:
parent
72032ad8a8
commit
8f06d22ac0
@ -23,8 +23,8 @@ import (
|
||||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
// The ABI holds information about a contract's context and available
|
||||
|
@ -26,9 +26,9 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
const jsondata = `
|
||||
|
@ -24,13 +24,13 @@ import (
|
||||
"io/ioutil"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/accounts/external"
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/external"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
)
|
||||
|
||||
// ErrNoChainID is returned whenever the user failed to specify a chain id.
|
||||
|
@ -21,9 +21,9 @@ import (
|
||||
"errors"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -24,25 +24,25 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"github.com/ethereum/go-ethereum/consensus/ethash"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/bloombits"
|
||||
"github.com/ethereum/go-ethereum/core/rawdb"
|
||||
"github.com/ethereum/go-ethereum/core/state"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/eth/filters"
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rpc"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/consensus/ethash"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/bloombits"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/rawdb"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/state"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/filters"
|
||||
"gitlab.com/pulsechaincom/go-pulse/ethdb"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rpc"
|
||||
)
|
||||
|
||||
// This nil assignment ensures at compile time that SimulatedBackend implements bind.ContractBackend.
|
||||
|
@ -27,14 +27,14 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
)
|
||||
|
||||
func TestSimulatedBackend(t *testing.T) {
|
||||
|
@ -24,12 +24,12 @@ import (
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
)
|
||||
|
||||
// SignerFn is a signer function callback when a contract requires a method to
|
||||
|
@ -23,14 +23,14 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
)
|
||||
|
||||
type mockCaller struct {
|
||||
|
@ -30,8 +30,8 @@ import (
|
||||
"text/template"
|
||||
"unicode"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
)
|
||||
|
||||
// Lang is a target programming language selector to generate bindings for.
|
||||
|
File diff suppressed because one or more lines are too long
@ -16,7 +16,7 @@
|
||||
|
||||
package bind
|
||||
|
||||
import "github.com/ethereum/go-ethereum/accounts/abi"
|
||||
import "gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
|
||||
// tmplData is the data structure required to fill the binding template.
|
||||
type tmplData struct {
|
||||
@ -92,12 +92,12 @@ import (
|
||||
"strings"
|
||||
"errors"
|
||||
|
||||
ethereum "github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
ethereum "gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
@ -21,9 +21,9 @@ import (
|
||||
"errors"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
)
|
||||
|
||||
// WaitMined waits for tx to be mined on the blockchain.
|
||||
|
@ -23,12 +23,12 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind/backends"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind/backends"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
var testKey, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")
|
||||
|
@ -20,8 +20,8 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
// Event is an event potentially triggered by the EVM's LOG mechanism. The Event
|
||||
|
@ -25,8 +25,8 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
// FunctionType represents different types of functions a contract might have.
|
||||
|
@ -22,8 +22,8 @@ import (
|
||||
"math/big"
|
||||
"reflect"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
)
|
||||
|
||||
// packBytesSlice packs the given bytes as [L, V] as the canonical representation
|
||||
|
@ -27,7 +27,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
// TestPack tests the general pack/unpack tests in packing_test.go
|
||||
|
@ -19,7 +19,7 @@ package abi
|
||||
import (
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
type packUnpackTest struct {
|
||||
|
@ -23,8 +23,8 @@ import (
|
||||
"math/big"
|
||||
"reflect"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
// MakeTopics converts a filter query argument list into a filter topic set.
|
||||
|
@ -21,8 +21,8 @@ import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
func TestMakeTopics(t *testing.T) {
|
||||
|
@ -24,7 +24,7 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
// Type enumerator
|
||||
|
@ -22,7 +22,7 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
// typeWithoutStringer is a alias for the Type type which simply doesn't implement
|
||||
|
@ -22,7 +22,7 @@ import (
|
||||
"math/big"
|
||||
"reflect"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -26,7 +26,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
|
@ -21,10 +21,10 @@ import (
|
||||
"fmt"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
"golang.org/x/crypto/sha3"
|
||||
)
|
||||
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
"bytes"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
)
|
||||
|
||||
func TestTextHash(t *testing.T) {
|
||||
|
18
accounts/external/backend.go
vendored
18
accounts/external/backend.go
vendored
@ -21,15 +21,15 @@ import (
|
||||
"math/big"
|
||||
"sync"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/rpc"
|
||||
"github.com/ethereum/go-ethereum/signer/core/apitypes"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rpc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/core/apitypes"
|
||||
)
|
||||
|
||||
type ExternalBackend struct {
|
||||
|
@ -28,9 +28,9 @@ import (
|
||||
"time"
|
||||
|
||||
mapset "github.com/deckarep/golang-set"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
)
|
||||
|
||||
// Minimum amount of time between cache reloads. This limit applies if the platform does
|
||||
|
@ -29,8 +29,8 @@ import (
|
||||
|
||||
"github.com/cespare/cp"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -25,7 +25,7 @@ import (
|
||||
"time"
|
||||
|
||||
mapset "github.com/deckarep/golang-set"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
)
|
||||
|
||||
// fileCache is a cache of files seen during scan of keystore.
|
||||
|
@ -29,9 +29,9 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
|
@ -32,11 +32,11 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -28,10 +28,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
)
|
||||
|
||||
var testSigData = make([]byte, 32)
|
||||
|
@ -38,10 +38,10 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"github.com/google/uuid"
|
||||
"golang.org/x/crypto/pbkdf2"
|
||||
"golang.org/x/crypto/scrypt"
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
"io/ioutil"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -22,7 +22,7 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
)
|
||||
|
||||
type keyStorePlain struct {
|
||||
|
@ -27,8 +27,8 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
func tmpKeyStoreIface(t *testing.T, encrypted bool) (dir string, ks keyStore) {
|
||||
|
@ -25,8 +25,8 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"github.com/google/uuid"
|
||||
"golang.org/x/crypto/pbkdf2"
|
||||
)
|
||||
|
@ -19,10 +19,10 @@ package keystore
|
||||
import (
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
)
|
||||
|
||||
// keystoreWallet implements the accounts.Wallet interface for the original
|
||||
|
@ -21,7 +21,7 @@ package keystore
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"github.com/rjeczalik/notify"
|
||||
)
|
||||
|
||||
|
@ -21,8 +21,8 @@ import (
|
||||
"sort"
|
||||
"sync"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
)
|
||||
|
||||
// Config contains the settings of the global account manager.
|
||||
|
@ -41,10 +41,10 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
pcsc "github.com/gballet/go-libpcsclite"
|
||||
)
|
||||
|
||||
|
@ -26,7 +26,7 @@ import (
|
||||
"crypto/sha512"
|
||||
"fmt"
|
||||
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
pcsc "github.com/gballet/go-libpcsclite"
|
||||
"golang.org/x/crypto/pbkdf2"
|
||||
"golang.org/x/text/unicode/norm"
|
||||
|
@ -33,12 +33,12 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
pcsc "github.com/gballet/go-libpcsclite"
|
||||
"github.com/status-im/keycard-go/derivationpath"
|
||||
)
|
||||
|
@ -23,9 +23,9 @@ import (
|
||||
"sync/atomic"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/event"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/event"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"github.com/karalabe/usb"
|
||||
)
|
||||
|
||||
|
@ -28,13 +28,13 @@ import (
|
||||
"io"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
)
|
||||
|
||||
// ledgerOpcode is an enumeration encoding the supported Ledger opcodes.
|
||||
|
@ -27,12 +27,12 @@ import (
|
||||
"io"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/accounts/usbwallet/trezor"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/usbwallet/trezor"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"github.com/golang/protobuf/proto"
|
||||
)
|
||||
|
||||
|
@ -25,12 +25,12 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum"
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"github.com/karalabe/usb"
|
||||
)
|
||||
|
||||
|
10
build/ci.go
10
build/ci.go
@ -59,9 +59,9 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/cespare/cp"
|
||||
"github.com/ethereum/go-ethereum/crypto/signify"
|
||||
"github.com/ethereum/go-ethereum/internal/build"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto/signify"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/build"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -1004,7 +1004,7 @@ func doAndroidArchive(cmdline []string) {
|
||||
build.MustRun(tc.Go("mod", "download"))
|
||||
|
||||
// Build the Android archive and Maven resources
|
||||
build.MustRun(gomobileTool("bind", "-ldflags", "-s -w", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/ethereum/go-ethereum/mobile"))
|
||||
build.MustRun(gomobileTool("bind", "-ldflags", "-s -w", "--target", "android", "--javapkg", "org.ethereum", "-v", "gitlab.com/pulsechaincom/go-pulse/mobile"))
|
||||
|
||||
if *local {
|
||||
// If we're building locally, copy bundle to build dir and skip Maven
|
||||
@ -1133,7 +1133,7 @@ func doXCodeFramework(cmdline []string) {
|
||||
build.MustRun(tc.Go("mod", "download"))
|
||||
|
||||
// Build the iOS XCode framework
|
||||
bind := gomobileTool("bind", "-ldflags", "-s -w", "--target", "ios", "-v", "github.com/ethereum/go-ethereum/mobile")
|
||||
bind := gomobileTool("bind", "-ldflags", "-s -w", "--target", "ios", "-v", "gitlab.com/pulsechaincom/go-pulse/mobile")
|
||||
|
||||
if *local {
|
||||
// If we're building locally, use the build folder and stop afterwards
|
||||
|
@ -23,8 +23,8 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/signer/core/apitypes"
|
||||
"github.com/ethereum/go-ethereum/signer/fourbyte"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/core/apitypes"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/fourbyte"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
@ -25,13 +25,13 @@ import (
|
||||
"regexp"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/abi"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common/compiler"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/internal/flags"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/compiler"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/flags"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -24,13 +24,13 @@ import (
|
||||
"net"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/p2p/nat"
|
||||
"github.com/ethereum/go-ethereum/p2p/netutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/nat"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/netutil"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
@ -19,15 +19,15 @@ package main
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
||||
"github.com/ethereum/go-ethereum/accounts/external"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/contracts/checkpointoracle"
|
||||
"github.com/ethereum/go-ethereum/ethclient"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rpc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/abi/bind"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/external"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/contracts/checkpointoracle"
|
||||
"gitlab.com/pulsechaincom/go-pulse/ethclient"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rpc"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -25,17 +25,17 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/contracts/checkpointoracle"
|
||||
"github.com/ethereum/go-ethereum/contracts/checkpointoracle/contract"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/ethclient"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rpc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/contracts/checkpointoracle"
|
||||
"gitlab.com/pulsechaincom/go-pulse/contracts/checkpointoracle/contract"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/ethclient"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rpc"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -22,9 +22,9 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common/fdlimit"
|
||||
"github.com/ethereum/go-ethereum/internal/flags"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/fdlimit"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/flags"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -19,8 +19,8 @@ package main
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -35,25 +35,25 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts"
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/internal/ethapi"
|
||||
"github.com/ethereum/go-ethereum/internal/flags"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/node"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"github.com/ethereum/go-ethereum/rpc"
|
||||
"github.com/ethereum/go-ethereum/signer/core"
|
||||
"github.com/ethereum/go-ethereum/signer/core/apitypes"
|
||||
"github.com/ethereum/go-ethereum/signer/fourbyte"
|
||||
"github.com/ethereum/go-ethereum/signer/rules"
|
||||
"github.com/ethereum/go-ethereum/signer/storage"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/ethapi"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/flags"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/node"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rpc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/core/apitypes"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/fourbyte"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/rules"
|
||||
"gitlab.com/pulsechaincom/go-pulse/signer/storage"
|
||||
"github.com/mattn/go-colorable"
|
||||
"github.com/mattn/go-isatty"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
|
@ -19,8 +19,8 @@ package main
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
)
|
||||
|
||||
type crawler struct {
|
||||
|
@ -24,12 +24,12 @@ import (
|
||||
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v4test"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/devp2p/internal/v4test"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -20,9 +20,9 @@ import (
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v5test"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/devp2p/internal/v5test"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -22,8 +22,8 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/cloudflare/cloudflare-go"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/dnsdisc"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -32,8 +32,8 @@ import (
|
||||
"github.com/aws/aws-sdk-go-v2/service/route53/types"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/dnsdisc"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -27,11 +27,11 @@ import (
|
||||
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/console/prompt"
|
||||
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/console/prompt"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/dnsdisc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -28,9 +28,9 @@ import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/p2p/enr"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enr"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -26,11 +26,11 @@ import (
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/forkid"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/forkid"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
)
|
||||
|
||||
type Chain struct {
|
||||
|
@ -21,8 +21,8 @@ import (
|
||||
"strconv"
|
||||
"testing"
|
||||
|
||||
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
||||
"github.com/ethereum/go-ethereum/p2p"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/protocols/eth"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
|
@ -24,13 +24,13 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/p2p"
|
||||
"github.com/ethereum/go-ethereum/p2p/rlpx"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/protocols/eth"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/rlpx"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -20,9 +20,9 @@ import (
|
||||
"crypto/rand"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
)
|
||||
|
||||
// largeNumber returns a very large big.Int.
|
||||
|
@ -19,10 +19,10 @@ package ethtest
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/protocols/eth"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
)
|
||||
|
||||
// Suite represents a structure used to test a node's conformance
|
||||
|
@ -21,11 +21,11 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/eth"
|
||||
"github.com/ethereum/go-ethereum/eth/ethconfig"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/node"
|
||||
"github.com/ethereum/go-ethereum/p2p"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/ethconfig"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/node"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -22,11 +22,11 @@ import (
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
)
|
||||
|
||||
//var faucetAddr = common.HexToAddress("0x71562b71999873DB5b286dF957af199Ec94617F7")
|
||||
|
@ -20,10 +20,10 @@ import (
|
||||
"crypto/ecdsa"
|
||||
"fmt"
|
||||
|
||||
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
||||
"github.com/ethereum/go-ethereum/p2p"
|
||||
"github.com/ethereum/go-ethereum/p2p/rlpx"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/eth/protocols/eth"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/rlpx"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
)
|
||||
|
||||
type Message interface {
|
||||
|
@ -23,9 +23,9 @@ import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover/v4wire"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover/v4wire"
|
||||
)
|
||||
|
||||
const (
|
||||
|
@ -22,9 +22,9 @@ import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover/v4wire"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover/v4wire"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
)
|
||||
|
||||
const waitTime = 300 * time.Millisecond
|
||||
|
@ -22,10 +22,10 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover/v5wire"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/p2p/netutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover/v5wire"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/netutil"
|
||||
)
|
||||
|
||||
// Suite is the discv5 test suite.
|
||||
|
@ -24,11 +24,11 @@ import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common/mclock"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/p2p/discover/v5wire"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/p2p/enr"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/mclock"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/discover/v5wire"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enr"
|
||||
)
|
||||
|
||||
// readError represents an error during packet reading.
|
||||
|
@ -20,8 +20,8 @@ import (
|
||||
"fmt"
|
||||
"net"
|
||||
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -22,9 +22,9 @@ import (
|
||||
"path/filepath"
|
||||
"sort"
|
||||
|
||||
"github.com/ethereum/go-ethereum/internal/debug"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/debug"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -25,8 +25,8 @@ import (
|
||||
"sort"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/p2p/enode"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enode"
|
||||
)
|
||||
|
||||
const jsonIndent = " "
|
||||
|
@ -27,10 +27,10 @@ import (
|
||||
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/forkid"
|
||||
"github.com/ethereum/go-ethereum/p2p/enr"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/forkid"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/enr"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -20,12 +20,12 @@ import (
|
||||
"fmt"
|
||||
"net"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/ethtest"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/p2p"
|
||||
"github.com/ethereum/go-ethereum/p2p/rlpx"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/devp2p/internal/ethtest"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p"
|
||||
"gitlab.com/pulsechaincom/go-pulse/p2p/rlpx"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -19,9 +19,9 @@ package main
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/v4test"
|
||||
"github.com/ethereum/go-ethereum/internal/utesting"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/devp2p/internal/v4test"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/utesting"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -21,8 +21,8 @@ import (
|
||||
"io/ioutil"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -23,9 +23,9 @@ import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"github.com/google/uuid"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
@ -21,9 +21,9 @@ import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/internal/flags"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/flags"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -21,10 +21,10 @@ import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"github.com/ethereum/go-ethereum/accounts/keystore"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/accounts/keystore"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -22,7 +22,7 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/docker/docker/pkg/reexec"
|
||||
"github.com/ethereum/go-ethereum/internal/cmdtest"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/cmdtest"
|
||||
)
|
||||
|
||||
type testEthkey struct {
|
||||
|
@ -22,8 +22,8 @@ import (
|
||||
"io/ioutil"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -21,7 +21,7 @@ import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/evm/internal/compiler"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/evm/internal/compiler"
|
||||
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
@ -22,7 +22,7 @@ import (
|
||||
"io/ioutil"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/asm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/asm"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -20,7 +20,7 @@ import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/asm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/asm"
|
||||
)
|
||||
|
||||
func Compile(fn string, src []byte, debug bool) (string, error) {
|
||||
|
@ -21,20 +21,20 @@ import (
|
||||
"math/big"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"github.com/ethereum/go-ethereum/consensus/misc"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/rawdb"
|
||||
"github.com/ethereum/go-ethereum/core/state"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/ethdb"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"github.com/ethereum/go-ethereum/trie"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/consensus/misc"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/rawdb"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/state"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/ethdb"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/trie"
|
||||
"golang.org/x/crypto/sha3"
|
||||
)
|
||||
|
||||
|
@ -20,8 +20,8 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/tests"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/tests"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -7,8 +7,8 @@ import (
|
||||
"errors"
|
||||
"math/big"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/math"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/math"
|
||||
)
|
||||
|
||||
var _ = (*stEnvMarshaling)(nil)
|
||||
|
@ -27,17 +27,17 @@ import (
|
||||
"path"
|
||||
"strings"
|
||||
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/common/hexutil"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/state"
|
||||
"github.com/ethereum/go-ethereum/core/types"
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/crypto"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"github.com/ethereum/go-ethereum/rlp"
|
||||
"github.com/ethereum/go-ethereum/tests"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common/hexutil"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/state"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/types"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/crypto"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/rlp"
|
||||
"gitlab.com/pulsechaincom/go-pulse/tests"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -22,9 +22,9 @@ import (
|
||||
"math/big"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/evm/internal/t8ntool"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/internal/flags"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/evm/internal/t8ntool"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/internal/flags"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -28,16 +28,16 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/ethereum/go-ethereum/cmd/evm/internal/compiler"
|
||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||
"github.com/ethereum/go-ethereum/common"
|
||||
"github.com/ethereum/go-ethereum/core"
|
||||
"github.com/ethereum/go-ethereum/core/rawdb"
|
||||
"github.com/ethereum/go-ethereum/core/state"
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/core/vm/runtime"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/params"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/evm/internal/compiler"
|
||||
"gitlab.com/pulsechaincom/go-pulse/cmd/utils"
|
||||
"gitlab.com/pulsechaincom/go-pulse/common"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/rawdb"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/state"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm/runtime"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/params"
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
||||
|
@ -23,10 +23,10 @@ import (
|
||||
"io/ioutil"
|
||||
"os"
|
||||
|
||||
"github.com/ethereum/go-ethereum/core/state"
|
||||
"github.com/ethereum/go-ethereum/core/vm"
|
||||
"github.com/ethereum/go-ethereum/log"
|
||||
"github.com/ethereum/go-ethereum/tests"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/state"
|
||||
"gitlab.com/pulsechaincom/go-pulse/core/vm"
|
||||
"gitlab.com/pulsechaincom/go-pulse/log"
|
||||
"gitlab.com/pulsechaincom/go-pulse/tests"
|
||||
|
||||
"gopkg.in/urfave/cli.v1"
|
||||
)
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user