eInc protocol update

This commit is contained in:
suryansh 2018-03-20 01:29:26 +05:30
parent e64336306f
commit 5f308ad70a
573 changed files with 2098 additions and 2098 deletions

View file

@ -2,7 +2,7 @@
Before you do a feature request please check and make sure that it isn't possible
through some other means. The JavaScript enabled console is a powerful feature
in the right hands. Please check our [Wiki page](https://github.com/etherinc/go-ethereum/wiki) for more info
in the right hands. Please check our [Wiki page](https://github.com/etherinc/go-etherinc/wiki) for more info
and help.
## Contributing
@ -11,6 +11,6 @@ If you'd like to contribute to go-ethereum please fork, fix, commit and
send a pull request. Commits which do not comply with the coding standards
are ignored (use gofmt!).
See [Developers' Guide](https://github.com/etherinc/go-ethereum/wiki/Developers'-Guide)
See [Developers' Guide](https://github.com/etherinc/go-etherinc/wiki/Developers'-Guide)
for more details on configuring your environment, testing, and
dependency management.

View file

@ -1,5 +1,5 @@
language: go
go_import_path: github.com/etherinc/go-ethereum
go_import_path: github.com/etherinc/go-etherinc
sudo: false
matrix:
include:

View file

@ -27,8 +27,8 @@ import (
"reflect"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
)
const jsondata = `

View file

@ -22,10 +22,10 @@ import (
"io"
"io/ioutil"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/crypto"
)
// NewTransactor is a utility method to easily create a transaction signer from

View file

@ -21,9 +21,9 @@ import (
"errors"
"math/big"
"github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
)
var (

View file

@ -24,21 +24,21 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/accounts/abi/bind"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/math"
"github.com/etherinc/go-ethereum/consensus/ethash"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/core/bloombits"
"github.com/etherinc/go-ethereum/core/state"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/core/vm"
"github.com/etherinc/go-ethereum/eth/filters"
"github.com/etherinc/go-ethereum/ethdb"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-ethereum/rpc"
"github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/accounts/abi/bind"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/math"
"github.com/etherinc/go-etherinc/consensus/ethash"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/core/bloombits"
"github.com/etherinc/go-etherinc/core/state"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/core/vm"
"github.com/etherinc/go-etherinc/eth/filters"
"github.com/etherinc/go-etherinc/ethdb"
"github.com/etherinc/go-etherinc/event"
"github.com/etherinc/go-etherinc/params"
"github.com/etherinc/go-etherinc/rpc"
)
// This nil assignment ensures compile time that SimulatedBackend implements bind.ContractBackend.

View file

@ -22,12 +22,12 @@ import (
"fmt"
"math/big"
"github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/accounts/abi"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/accounts/abi"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/event"
)
// SignerFn is a signer function callback when a contract requires a method to

View file

@ -17,7 +17,7 @@
// Package bind generates Ethereum contract Go bindings.
//
// Detailed usage document and tutorial available on the go-ethereum Wiki page:
// https://github.com/etherinc/go-ethereum/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
// https://github.com/etherinc/go-etherinc/wiki/Native-DApps:-Go-bindings-to-Ethereum-contracts
package bind
import (
@ -28,7 +28,7 @@ import (
"text/template"
"unicode"
"github.com/etherinc/go-ethereum/accounts/abi"
"github.com/etherinc/go-etherinc/accounts/abi"
"golang.org/x/tools/imports"
)

View file

@ -26,7 +26,7 @@ import (
"strings"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
"golang.org/x/tools/imports"
)

View file

@ -16,7 +16,7 @@
package bind
import "github.com/etherinc/go-ethereum/accounts/abi"
import "github.com/etherinc/go-etherinc/accounts/abi"
// tmplData is the data structure required to fill the binding template.
type tmplData struct {

View file

@ -22,9 +22,9 @@ import (
"math/big"
"reflect"
"github.com/etherinc/go-ethereum/accounts/abi"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/abi"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
)
// makeTopics converts a filter query argument list into a filter topic set.

View file

@ -21,9 +21,9 @@ import (
"fmt"
"time"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/log"
)
// WaitMined waits for tx to be mined on the blockchain.

View file

@ -22,12 +22,12 @@ import (
"testing"
"time"
"github.com/etherinc/go-ethereum/accounts/abi/bind"
"github.com/etherinc/go-ethereum/accounts/abi/bind/backends"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/abi/bind"
"github.com/etherinc/go-etherinc/accounts/abi/bind/backends"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/crypto"
)
var testKey, _ = crypto.HexToECDSA("b71c71a67e1177ad4e901695e1b4b9ee17ae16c6668d313eac2f96dbcda3f291")

View file

@ -20,8 +20,8 @@ import (
"fmt"
"strings"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
)
// Event is an event potentially triggered by the EVM's LOG mechanism. The Event

View file

@ -25,8 +25,8 @@ import (
"strings"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
@ -244,7 +244,7 @@ func unpackTestEventData(dest interface{}, hexData string, jsonEvent []byte, ass
/*
Taken from
https://github.com/etherinc/go-ethereum/pull/15568
https://github.com/etherinc/go-etherinc/pull/15568
*/
type testResult struct {

View file

@ -20,7 +20,7 @@ import (
"fmt"
"strings"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/crypto"
)
// Method represents a callable given a `Name` and whether the method is a constant.

View file

@ -20,8 +20,8 @@ import (
"math/big"
"reflect"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/math"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/math"
)
var (

View file

@ -20,8 +20,8 @@ import (
"math/big"
"reflect"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/math"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/math"
)
// packBytesSlice packs the given bytes as [L, V] as the canonical representation

View file

@ -24,7 +24,7 @@ import (
"strings"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
)
func TestPack(t *testing.T) {

View file

@ -22,7 +22,7 @@ import (
"testing"
"github.com/davecgh/go-spew/spew"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
)
// typeWithoutStringer is a alias for the Type type which simply doesn't implement

View file

@ -22,7 +22,7 @@ import (
"math/big"
"reflect"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
)
// reads the integer based on its kind

View file

@ -26,7 +26,7 @@ import (
"strings"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
"github.com/stretchr/testify/require"
)

View file

@ -20,10 +20,10 @@ package accounts
import (
"math/big"
ethereum "github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/event"
ethereum "github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/event"
)
// Account represents an Ethereum account located at a specific location defined

View file

@ -27,9 +27,9 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/log"
"gopkg.in/fatih/set.v0"
)

View file

@ -29,8 +29,8 @@ import (
"github.com/cespare/cp"
"github.com/davecgh/go-spew/spew"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
)
var (

View file

@ -24,7 +24,7 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
set "gopkg.in/fatih/set.v0"
)

View file

@ -29,9 +29,9 @@ import (
"strings"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
"github.com/pborman/uuid"
)

View file

@ -33,11 +33,11 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/event"
)
var (

View file

@ -36,10 +36,10 @@ import (
"io/ioutil"
"path/filepath"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/math"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/crypto/randentropy"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/math"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/crypto/randentropy"
"github.com/pborman/uuid"
"golang.org/x/crypto/pbkdf2"
"golang.org/x/crypto/scrypt"

View file

@ -20,7 +20,7 @@ import (
"io/ioutil"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
)
const (

View file

@ -22,7 +22,7 @@ import (
"os"
"path/filepath"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-etherinc/common"
)
type keyStorePlain struct {

View file

@ -27,8 +27,8 @@ import (
"strings"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
)
func tmpKeyStoreIface(t *testing.T, encrypted bool) (dir string, ks keyStore) {

View file

@ -26,9 +26,9 @@ import (
"testing"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/event"
)
var testSigData = make([]byte, 32)

View file

@ -19,9 +19,9 @@ package keystore
import (
"math/big"
ethereum "github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/core/types"
ethereum "github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/core/types"
)
// keystoreWallet implements the accounts.Wallet interface for the original

View file

@ -25,8 +25,8 @@ import (
"errors"
"fmt"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/crypto"
"github.com/pborman/uuid"
"golang.org/x/crypto/pbkdf2"
)

View file

@ -21,7 +21,7 @@ package keystore
import (
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
"github.com/rjeczalik/notify"
)

View file

@ -21,7 +21,7 @@ import (
"sort"
"sync"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-etherinc/event"
)
// Manager is an overarching account manager that can communicate with various

View file

@ -22,9 +22,9 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/event"
"github.com/etherinc/go-etherinc/log"
"github.com/karalabe/hid"
)

View file

@ -28,12 +28,12 @@ import (
"io"
"math/big"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/hexutil"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/rlp"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/hexutil"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/rlp"
)
// ledgerOpcode is an enumeration encoding the supported Ledger opcodes.

View file

@ -27,12 +27,12 @@ import (
"io"
"math/big"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/accounts/usbwallet/internal/trezor"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/hexutil"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/accounts/usbwallet/internal/trezor"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/hexutil"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/log"
"github.com/golang/protobuf/proto"
)

View file

@ -25,11 +25,11 @@ import (
"sync"
"time"
ethereum "github.com/etherinc/go-ethereum"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/log"
ethereum "github.com/etherinc/go-etherinc"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/log"
"github.com/karalabe/hid"
)

View file

@ -28,7 +28,7 @@ import (
"testing"
"time"
"github.com/etherinc/go-ethereum/crypto/sha3"
"github.com/etherinc/go-etherinc/crypto/sha3"
)
const (

View file

@ -58,7 +58,7 @@ import (
"strings"
"time"
"github.com/etherinc/go-ethereum/internal/build"
"github.com/etherinc/go-etherinc/internal/build"
)
var (
@ -737,7 +737,7 @@ func doAndroidArchive(cmdline []string) {
// Build the Android archive and Maven resources
build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile"))
build.MustRun(gomobileTool("init", "--ndk", os.Getenv("ANDROID_NDK")))
build.MustRun(gomobileTool("bind", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/etherinc/go-ethereum/mobile"))
build.MustRun(gomobileTool("bind", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/etherinc/go-etherinc/mobile"))
if *local {
// If we're building locally, copy bundle to build dir and skip Maven
@ -857,7 +857,7 @@ func doXCodeFramework(cmdline []string) {
// Build the iOS XCode framework
build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile"))
build.MustRun(gomobileTool("init"))
bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "-v", "github.com/etherinc/go-ethereum/mobile")
bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "-v", "github.com/etherinc/go-etherinc/mobile")
if *local {
// If we're building locally, use the build folder and stop afterwards

View file

@ -5,8 +5,8 @@ Maintainer: {{.Author}}
Build-Depends: debhelper (>= 8.0.0), golang-1.9
Standards-Version: 3.9.5
Homepage: https://ethereum.org
Vcs-Git: git://github.com/etherinc/go-ethereum.git
Vcs-Browser: https://github.com/etherinc/go-ethereum
Vcs-Git: git://github.com/etherinc/go-etherinc.git
Vcs-Browser: https://github.com/etherinc/go-etherinc
Package: {{.Name}}
Architecture: any

View file

@ -11,7 +11,7 @@
<name>Android Ethereum Client</name>
<description>Android port of the go-ethereum libraries and node</description>
<url>https://github.com/etherinc/go-ethereum</url>
<url>https://github.com/etherinc/go-etherinc</url>
<inceptionYear>2015</inceptionYear>
<licenses>
@ -48,10 +48,10 @@
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/etherinc/go-ethereum/issues/</url>
<url>https://github.com/etherinc/go-etherinc/issues/</url>
</issueManagement>
<scm>
<url>https://github.com/etherinc/go-ethereum</url>
<url>https://github.com/etherinc/go-etherinc</url>
</scm>
</project>

View file

@ -3,9 +3,9 @@ InstallDir "$InstDir"
OutFile "${OUTPUTFILE}" # set through command line arguments
# Links for "Add/Remove Programs"
!define HELPURL "https://github.com/etherinc/go-ethereum/issues"
!define UPDATEURL "https://github.com/etherinc/go-ethereum/releases"
!define ABOUTURL "https://github.com/etherinc/go-ethereum#ethereum-go"
!define HELPURL "https://github.com/etherinc/go-etherinc/issues"
!define UPDATEURL "https://github.com/etherinc/go-etherinc/releases"
!define ABOUTURL "https://github.com/etherinc/go-etherinc#ethereum-go"
!define /date NOW "%Y%m%d"
PageEx license

View file

@ -2,12 +2,12 @@ Pod::Spec.new do |spec|
spec.name = 'Geth'
spec.version = '{{.Version}}'
spec.license = { :type => 'GNU Lesser General Public License, Version 3.0' }
spec.homepage = 'https://github.com/etherinc/go-ethereum'
spec.homepage = 'https://github.com/etherinc/go-etherinc'
spec.authors = { {{range .Contributors}}
'{{.Name}}' => '{{.Email}}',{{end}}
}
spec.summary = 'iOS Ethereum Client'
spec.source = { :git => 'https://github.com/etherinc/go-ethereum.git', :commit => '{{.Commit}}' }
spec.source = { :git => 'https://github.com/etherinc/go-etherinc.git', :commit => '{{.Commit}}' }
spec.platform = :ios
spec.ios.deployment_target = '9.0'

View file

@ -24,8 +24,8 @@ import (
"os"
"strings"
"github.com/etherinc/go-ethereum/accounts/abi/bind"
"github.com/etherinc/go-ethereum/common/compiler"
"github.com/etherinc/go-etherinc/accounts/abi/bind"
"github.com/etherinc/go-etherinc/common/compiler"
)
var (

View file

@ -24,13 +24,13 @@ import (
"net"
"os"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/p2p/discover"
"github.com/etherinc/go-ethereum/p2p/discv5"
"github.com/etherinc/go-ethereum/p2p/nat"
"github.com/etherinc/go-ethereum/p2p/netutil"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/p2p/discover"
"github.com/etherinc/go-etherinc/p2p/discv5"
"github.com/etherinc/go-etherinc/p2p/nat"
"github.com/etherinc/go-etherinc/p2p/netutil"
)
func main() {

View file

@ -23,9 +23,9 @@ import (
"os"
"path/filepath"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/crypto"
"github.com/pborman/uuid"
"gopkg.in/urfave/cli.v1"
)

View file

@ -5,9 +5,9 @@ import (
"fmt"
"io/ioutil"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/crypto"
"gopkg.in/urfave/cli.v1"
)

View file

@ -20,7 +20,7 @@ import (
"fmt"
"os"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-etherinc/cmd/utils"
"gopkg.in/urfave/cli.v1"
)

View file

@ -21,10 +21,10 @@ import (
"fmt"
"io/ioutil"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/crypto"
"gopkg.in/urfave/cli.v1"
)

View file

@ -22,7 +22,7 @@ import (
"testing"
"github.com/docker/docker/pkg/reexec"
"github.com/etherinc/go-ethereum/internal/cmdtest"
"github.com/etherinc/go-etherinc/internal/cmdtest"
)
type testEthkey struct {

View file

@ -22,9 +22,9 @@ import (
"io/ioutil"
"strings"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/console"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/console"
"github.com/etherinc/go-etherinc/crypto"
"gopkg.in/urfave/cli.v1"
)

View file

@ -21,7 +21,7 @@ import (
"fmt"
"io/ioutil"
"github.com/etherinc/go-ethereum/cmd/evm/internal/compiler"
"github.com/etherinc/go-etherinc/cmd/evm/internal/compiler"
cli "gopkg.in/urfave/cli.v1"
)

View file

@ -22,7 +22,7 @@ import (
"io/ioutil"
"strings"
"github.com/etherinc/go-ethereum/core/asm"
"github.com/etherinc/go-etherinc/core/asm"
cli "gopkg.in/urfave/cli.v1"
)

View file

@ -20,7 +20,7 @@ import (
"errors"
"fmt"
"github.com/etherinc/go-ethereum/core/asm"
"github.com/etherinc/go-etherinc/core/asm"
)
func Compile(fn string, src []byte, debug bool) (string, error) {

View file

@ -22,9 +22,9 @@ import (
"math/big"
"time"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/math"
"github.com/etherinc/go-ethereum/core/vm"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/math"
"github.com/etherinc/go-etherinc/core/vm"
)
type JSONLogger struct {

View file

@ -22,7 +22,7 @@ import (
"math/big"
"os"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-etherinc/cmd/utils"
"gopkg.in/urfave/cli.v1"
)

View file

@ -27,16 +27,16 @@ import (
goruntime "runtime"
"github.com/etherinc/go-ethereum/cmd/evm/internal/compiler"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/core/state"
"github.com/etherinc/go-ethereum/core/vm"
"github.com/etherinc/go-ethereum/core/vm/runtime"
"github.com/etherinc/go-ethereum/ethdb"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/cmd/evm/internal/compiler"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/core/state"
"github.com/etherinc/go-etherinc/core/vm"
"github.com/etherinc/go-etherinc/core/vm/runtime"
"github.com/etherinc/go-etherinc/ethdb"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/params"
cli "gopkg.in/urfave/cli.v1"
)

View file

@ -23,10 +23,10 @@ import (
"io/ioutil"
"os"
"github.com/etherinc/go-ethereum/core/state"
"github.com/etherinc/go-ethereum/core/vm"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/tests"
"github.com/etherinc/go-etherinc/core/state"
"github.com/etherinc/go-etherinc/core/vm"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/tests"
cli "gopkg.in/urfave/cli.v1"
)

View file

@ -41,23 +41,23 @@ import (
"sync"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/eth"
"github.com/etherinc/go-ethereum/eth/downloader"
"github.com/etherinc/go-ethereum/ethclient"
"github.com/etherinc/go-ethereum/ethstats"
"github.com/etherinc/go-ethereum/les"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/node"
"github.com/etherinc/go-ethereum/p2p"
"github.com/etherinc/go-ethereum/p2p/discover"
"github.com/etherinc/go-ethereum/p2p/discv5"
"github.com/etherinc/go-ethereum/p2p/nat"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/eth"
"github.com/etherinc/go-etherinc/eth/downloader"
"github.com/etherinc/go-etherinc/ethclient"
"github.com/etherinc/go-etherinc/ethstats"
"github.com/etherinc/go-etherinc/les"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/node"
"github.com/etherinc/go-etherinc/p2p"
"github.com/etherinc/go-etherinc/p2p/discover"
"github.com/etherinc/go-etherinc/p2p/discv5"
"github.com/etherinc/go-etherinc/p2p/nat"
"github.com/etherinc/go-etherinc/params"
"golang.org/x/net/websocket"
)
@ -450,7 +450,7 @@ func (f *faucet) apiHandler(conn *websocket.Conn) {
case *noauthFlag:
username, avatar, address, err = authNoAuth(msg.URL)
default:
err = errors.New("Something funky happened, please open an issue at https://github.com/etherinc/go-ethereum/issues")
err = errors.New("Something funky happened, please open an issue at https://github.com/etherinc/go-etherinc/issues")
}
if err != nil {
if err = sendError(conn, err); err != nil {

View file

@ -20,12 +20,12 @@ import (
"fmt"
"io/ioutil"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/console"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/console"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/log"
"gopkg.in/urfave/cli.v1"
)

View file

@ -173,7 +173,7 @@ Fatal: Failed to unlock account f466859ead1932d743d622cb74fc058882e8648a (could
`)
}
// https://github.com/etherinc/go-ethereum/issues/1785
// https://github.com/etherinc/go-etherinc/issues/1785
func TestUnlockFlagMultiIndex(t *testing.T) {
datadir := tmpDatadirWithKeystore(t)
geth := runGeth(t,

View file

@ -26,10 +26,10 @@ import (
"runtime"
"strings"
"github.com/etherinc/go-ethereum/cmd/internal/browser"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/cmd/internal/browser"
"github.com/etherinc/go-etherinc/params"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-etherinc/cmd/utils"
cli "gopkg.in/urfave/cli.v1"
)
@ -41,7 +41,7 @@ var bugCommand = cli.Command{
Category: "MISCELLANEOUS COMMANDS",
}
const issueUrl = "https://github.com/etherinc/go-ethereum/issues/new"
const issueUrl = "https://github.com/etherinc/go-etherinc/issues/new"
// reportBug reports a bug by opening a new URL to the go-ethereum GH issue
// tracker and setting default values as the issue body.

View file

@ -25,17 +25,17 @@ import (
"sync/atomic"
"time"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/console"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/core/state"
"github.com/etherinc/go-ethereum/core/types"
"github.com/etherinc/go-ethereum/eth/downloader"
"github.com/etherinc/go-ethereum/ethdb"
"github.com/etherinc/go-ethereum/event"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/trie"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/console"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/core/state"
"github.com/etherinc/go-etherinc/core/types"
"github.com/etherinc/go-etherinc/eth/downloader"
"github.com/etherinc/go-etherinc/ethdb"
"github.com/etherinc/go-etherinc/event"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/trie"
"github.com/syndtr/goleveldb/leveldb/util"
"gopkg.in/urfave/cli.v1"
)

View file

@ -27,12 +27,12 @@ import (
cli "gopkg.in/urfave/cli.v1"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/dashboard"
"github.com/etherinc/go-ethereum/eth"
"github.com/etherinc/go-ethereum/node"
"github.com/etherinc/go-ethereum/params"
whisper "github.com/etherinc/go-ethereum/whisper/whisperv5"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/dashboard"
"github.com/etherinc/go-etherinc/eth"
"github.com/etherinc/go-etherinc/node"
"github.com/etherinc/go-etherinc/params"
whisper "github.com/etherinc/go-etherinc/whisper/whisperv5"
"github.com/naoina/toml"
)

View file

@ -23,10 +23,10 @@ import (
"path/filepath"
"strings"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/console"
"github.com/etherinc/go-ethereum/node"
"github.com/etherinc/go-ethereum/rpc"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/console"
"github.com/etherinc/go-etherinc/node"
"github.com/etherinc/go-etherinc/rpc"
"gopkg.in/urfave/cli.v1"
)
@ -42,7 +42,7 @@ var (
Description: `
The Geth console is an interactive shell for the JavaScript runtime environment
which exposes a node admin interface as well as the Ðapp JavaScript API.
See https://github.com/etherinc/go-ethereum/wiki/Javascipt-Console.`,
See https://github.com/etherinc/go-etherinc/wiki/Javascipt-Console.`,
}
attachCommand = cli.Command{
@ -55,7 +55,7 @@ See https://github.com/etherinc/go-ethereum/wiki/Javascipt-Console.`,
Description: `
The Geth console is an interactive shell for the JavaScript runtime environment
which exposes a node admin interface as well as the Ðapp JavaScript API.
See https://github.com/etherinc/go-ethereum/wiki/Javascipt-Console.
See https://github.com/etherinc/go-etherinc/wiki/Javascipt-Console.
This command allows to open a console on a running geth node.`,
}
@ -68,7 +68,7 @@ This command allows to open a console on a running geth node.`,
Category: "CONSOLE COMMANDS",
Description: `
The JavaScript VM exposes a node admin interface as well as the Ðapp
JavaScript API. See https://github.com/etherinc/go-ethereum/wiki/Javascipt-Console`,
JavaScript API. See https://github.com/etherinc/go-etherinc/wiki/Javascipt-Console`,
}
)

View file

@ -27,7 +27,7 @@ import (
"testing"
"time"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/params"
)
const (

View file

@ -23,10 +23,10 @@ import (
"path/filepath"
"testing"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/ethdb"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/ethdb"
"github.com/etherinc/go-etherinc/params"
)
// Genesis block for nodes which don't care about the DAO fork (i.e. not configured)

View file

@ -25,17 +25,17 @@ import (
"strings"
"time"
"github.com/etherinc/go-ethereum/accounts"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/console"
"github.com/etherinc/go-ethereum/eth"
"github.com/etherinc/go-ethereum/ethclient"
"github.com/etherinc/go-ethereum/internal/debug"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/metrics"
"github.com/etherinc/go-ethereum/node"
"github.com/etherinc/go-etherinc/accounts"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/console"
"github.com/etherinc/go-etherinc/eth"
"github.com/etherinc/go-etherinc/ethclient"
"github.com/etherinc/go-etherinc/internal/debug"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/metrics"
"github.com/etherinc/go-etherinc/node"
"gopkg.in/urfave/cli.v1"
)

View file

@ -23,10 +23,10 @@ import (
"strconv"
"strings"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/consensus/ethash"
"github.com/etherinc/go-ethereum/eth"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/consensus/ethash"
"github.com/etherinc/go-etherinc/eth"
"github.com/etherinc/go-etherinc/params"
"gopkg.in/urfave/cli.v1"
)

View file

@ -25,9 +25,9 @@ import (
"strings"
"time"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/node"
"github.com/etherinc/go-ethereum/rpc"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/node"
"github.com/etherinc/go-etherinc/rpc"
"github.com/gizak/termui"
"gopkg.in/urfave/cli.v1"
)

View file

@ -23,7 +23,7 @@ import (
"testing"
"github.com/docker/docker/pkg/reexec"
"github.com/etherinc/go-ethereum/internal/cmdtest"
"github.com/etherinc/go-etherinc/internal/cmdtest"
)
func tmpdir(t *testing.T) string {

View file

@ -24,8 +24,8 @@ import (
"strings"
"github.com/etherinc/go-ethereum/cmd/utils"
"github.com/etherinc/go-ethereum/internal/debug"
"github.com/etherinc/go-etherinc/cmd/utils"
"github.com/etherinc/go-etherinc/internal/debug"
"gopkg.in/urfave/cli.v1"
)

View file

@ -29,12 +29,12 @@ import (
"strings"
"text/tabwriter"
"github.com/etherinc/go-ethereum/crypto"
"github.com/etherinc/go-ethereum/p2p"
"github.com/etherinc/go-ethereum/p2p/discover"
"github.com/etherinc/go-ethereum/p2p/simulations"
"github.com/etherinc/go-ethereum/p2p/simulations/adapters"
"github.com/etherinc/go-ethereum/rpc"
"github.com/etherinc/go-etherinc/crypto"
"github.com/etherinc/go-etherinc/p2p"
"github.com/etherinc/go-etherinc/p2p/discover"
"github.com/etherinc/go-etherinc/p2p/simulations"
"github.com/etherinc/go-etherinc/p2p/simulations/adapters"
"github.com/etherinc/go-etherinc/rpc"
"gopkg.in/urfave/cli.v1"
)

View file

@ -21,11 +21,11 @@ import (
"errors"
"math"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/common/hexutil"
"github.com/etherinc/go-ethereum/consensus/ethash"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/common/hexutil"
"github.com/etherinc/go-etherinc/consensus/ethash"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/params"
)
// cppEthereumGenesisSpec represents the genesis specification format used by the

View file

@ -25,7 +25,7 @@ import (
"strings"
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
var (

View file

@ -26,7 +26,7 @@ import (
"strconv"
"strings"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// dashboardContent is the actual dashboard HTML content to serve up when users
@ -256,7 +256,7 @@ var dashboardContent = `
<p>Starting with the 1.5 release of go-ethereum, we've transitioned away from shipping only full blown Ethereum clients and started focusing on releasing the code as reusable packages initially for Go projects, then later for Java based Android projects too. Mobile support is still evolving, hence is bound to change often and hard, but the Ethereum network can nonetheless be accessed from Android too.</p>
<p>Under the hood the Android library is backed by a go-ethereum light node, meaning that given a not-too-old Android device, you should be able to join the network without significant issues. Certain functionality is not yet available and rough edges are bound to appear here and there, please report issues if you find any.</p>
<br/>
<p>The stable Android archives are distributed via Maven Central, and the develop snapshots via the Sonatype repositories. Before proceeding, please ensure you have a recent version configured in your Android project. You can find details in <a href="https://github.com/etherinc/go-ethereum/wiki/Mobile:-Introduction#android-archive" target="about:blank">Mobile: Introduction &ndash; Android archive</a>.
<p>The stable Android archives are distributed via Maven Central, and the develop snapshots via the Sonatype repositories. Before proceeding, please ensure you have a recent version configured in your Android project. You can find details in <a href="https://github.com/etherinc/go-etherinc/wiki/Mobile:-Introduction#android-archive" target="about:blank">Mobile: Introduction &ndash; Android archive</a>.
<p>Before connecting to the Ethereum network, download the <a href="/{{.GethGenesis}}"><code>{{.GethGenesis}}</code></a> genesis json file and either store it in your Android project as a resource file you can access, or save it as a string in a variable. You're going to need to to initialize your client.</p>
<p>Inside your Java code you can now import the geth archive and connect to Ethereum:
<pre>import org.ethereum.geth.*;</pre>
@ -287,7 +287,7 @@ node.start();
<p>Starting with the 1.5 release of go-ethereum, we've transitioned away from shipping only full blown Ethereum clients and started focusing on releasing the code as reusable packages initially for Go projects, then later for ObjC/Swift based iOS projects too. Mobile support is still evolving, hence is bound to change often and hard, but the Ethereum network can nonetheless be accessed from iOS too.</p>
<p>Under the hood the iOS library is backed by a go-ethereum light node, meaning that given a not-too-old Apple device, you should be able to join the network without significant issues. Certain functionality is not yet available and rough edges are bound to appear here and there, please report issues if you find any.</p>
<br/>
<p>Both stable and develop builds of the iOS framework are available via CocoaPods. Before proceeding, please ensure you have a recent version configured in your iOS project. You can find details in <a href="https://github.com/etherinc/go-ethereum/wiki/Mobile:-Introduction#ios-framework" target="about:blank">Mobile: Introduction &ndash; iOS framework</a>.
<p>Both stable and develop builds of the iOS framework are available via CocoaPods. Before proceeding, please ensure you have a recent version configured in your iOS project. You can find details in <a href="https://github.com/etherinc/go-etherinc/wiki/Mobile:-Introduction#ios-framework" target="about:blank">Mobile: Introduction &ndash; iOS framework</a>.
<p>Before connecting to the Ethereum network, download the <a href="/{{.GethGenesis}}"><code>{{.GethGenesis}}</code></a> genesis json file and either store it in your iOS project as a resource file you can access, or save it as a string in a variable. You're going to need to to initialize your client.</p>
<p>Inside your Swift code you can now import the geth framework and connect to Ethereum (ObjC should be analogous):
<pre>import Geth</pre>
@ -419,7 +419,7 @@ try! node?.start();
<p>Puppeth is a tool to aid you in creating a new Ethereum network down to the genesis block, bootnodes, signers, ethstats server, crypto faucet, wallet browsers, block explorer, dashboard and more; without the hassle that it would normally entail to manually configure all these services one by one.</p>
<p>Puppeth uses ssh to dial in to remote servers, and builds its network components out of docker containers using docker-compose. The user is guided through the process via a command line wizard that does the heavy lifting and topology configuration automatically behind the scenes.</p>
<br/>
<p>Puppeth is distributed as part of the <a href="https://geth.ethereum.org/downloads/" target="about:blank">Geth &amp; Tools</a> bundles, but can also be installed separately via:<pre>go get github.com/etherinc/go-ethereum/cmd/puppeth</pre></p>
<p>Puppeth is distributed as part of the <a href="https://geth.ethereum.org/downloads/" target="about:blank">Geth &amp; Tools</a> bundles, but can also be installed separately via:<pre>go get github.com/etherinc/go-etherinc/cmd/puppeth</pre></p>
<br/>
<p><em>Copyright 2017. The go-ethereum Authors.</em></p>
</div>

View file

@ -25,7 +25,7 @@ import (
"strings"
"text/template"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// ethstatsDockerfile is the Dockerfile required to build an ethstats backend

View file

@ -25,7 +25,7 @@ import (
"strconv"
"strings"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// explorerDockerfile is the Dockerfile required to run a block explorer.

View file

@ -26,8 +26,8 @@ import (
"strconv"
"strings"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/log"
)
// faucetDockerfile is the Dockerfile required to build an faucet container to

View file

@ -24,7 +24,7 @@ import (
"path/filepath"
"strconv"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// nginxDockerfile is theis the Dockerfile required to build an nginx reverse-

View file

@ -26,8 +26,8 @@ import (
"strings"
"text/template"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/log"
)
// nodeDockerfile is the Dockerfile required to run an Ethereum node.

View file

@ -25,7 +25,7 @@ import (
"strconv"
"strings"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// walletDockerfile is the Dockerfile required to run a web wallet.

View file

@ -22,7 +22,7 @@ import (
"os"
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
"gopkg.in/urfave/cli.v1"
)

View file

@ -28,7 +28,7 @@ import (
"path/filepath"
"strings"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/terminal"
)

View file

@ -30,9 +30,9 @@ import (
"strings"
"sync"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/log"
"golang.org/x/crypto/ssh/terminal"
)

View file

@ -19,7 +19,7 @@ package main
import (
"fmt"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// deployDashboard queries the user for various input on deploying a web-service

View file

@ -20,7 +20,7 @@ import (
"fmt"
"sort"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// deployEthstats queries the user for various input on deploying an ethstats

View file

@ -21,7 +21,7 @@ import (
"fmt"
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// deployExplorer creates a new block explorer based on some user input.

View file

@ -20,8 +20,8 @@ import (
"encoding/json"
"fmt"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/log"
)
// deployFaucet queries the user for various input on deploying a faucet, after

View file

@ -25,10 +25,10 @@ import (
"math/rand"
"time"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-ethereum/params"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/log"
"github.com/etherinc/go-etherinc/params"
)
// makeGenesis creates a new genesis struct based on some user input.

View file

@ -26,7 +26,7 @@ import (
"strings"
"sync"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// makeWizard creates and returns a new puppeth wizard.

View file

@ -23,8 +23,8 @@ import (
"strings"
"sync"
"github.com/etherinc/go-ethereum/core"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/core"
"github.com/etherinc/go-etherinc/log"
"github.com/olekukonko/tablewriter"
)

View file

@ -20,7 +20,7 @@ import (
"fmt"
"strings"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// manageServers displays a list of servers the user can disconnect from, and an

View file

@ -19,7 +19,7 @@ package main
import (
"fmt"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// ensureVirtualHost checks whether a reverse-proxy is running on the specified

View file

@ -21,9 +21,9 @@ import (
"fmt"
"time"
"github.com/etherinc/go-ethereum/accounts/keystore"
"github.com/etherinc/go-ethereum/common"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/accounts/keystore"
"github.com/etherinc/go-etherinc/common"
"github.com/etherinc/go-etherinc/log"
)
// deployNode creates a new node configuration based on some user input.

View file

@ -21,7 +21,7 @@ import (
"fmt"
"time"
"github.com/etherinc/go-ethereum/log"
"github.com/etherinc/go-etherinc/log"
)
// deployWallet creates a new web wallet based on some user input.

Some files were not shown because too many files have changed in this diff Show more