From 40dae5a76197076bd65e2a8badd75deb6e260ae0 Mon Sep 17 00:00:00 2001 From: Admin Date: Sat, 28 Apr 2018 13:05:13 +0700 Subject: [PATCH] Upload --- .github/CONTRIBUTING.md | 6 +++--- .travis.yml | 2 +- AUTHORS | 2 +- COPYING | 2 +- Dockerfile | 6 +++--- Dockerfile.alltools | 6 +++--- appveyor.yml | 2 +- build/ci-notes.md | 2 +- build/deb.control | 4 ++-- build/deb.copyright | 8 ++++---- build/env.sh | 8 ++++---- build/mvn.pom | 8 ++++---- build/nsis.install.nsh | 6 +++--- build/pod.podspec | 4 ++-- circle.yml | 2 +- containers/docker/develop-alpine/Dockerfile | 8 ++++---- containers/docker/develop-ubuntu/Dockerfile | 8 ++++---- containers/docker/master-alpine/Dockerfile | 8 ++++---- containers/docker/master-ubuntu/Dockerfile | 8 ++++---- crypto/secp256k1/ext.h | 10 +++++----- dashboard/README.md | 2 +- dashboard/assets/.eslintrc | 10 +++++----- dashboard/assets/common.jsx | 10 +++++----- dashboard/assets/components/Body.jsx | 10 +++++----- dashboard/assets/components/ChartRow.jsx | 10 +++++----- dashboard/assets/components/CustomTooltip.jsx | 10 +++++----- dashboard/assets/components/Dashboard.jsx | 10 +++++----- dashboard/assets/components/Footer.jsx | 12 ++++++------ dashboard/assets/components/Header.jsx | 10 +++++----- dashboard/assets/components/Main.jsx | 10 +++++----- dashboard/assets/components/SideBar.jsx | 10 +++++----- dashboard/assets/fa-only-woff-loader.js | 10 +++++----- dashboard/assets/index.jsx | 10 +++++----- dashboard/assets/types/content.jsx | 10 +++++----- dashboard/assets/webpack.config.js | 10 +++++----- eth/tracers/internal/tracers/4byte_tracer.js | 10 +++++----- eth/tracers/internal/tracers/call_tracer.js | 10 +++++----- eth/tracers/internal/tracers/evmdis_tracer.js | 10 +++++----- eth/tracers/internal/tracers/noop_tracer.js | 10 +++++----- eth/tracers/internal/tracers/opcount_tracer.js | 10 +++++----- eth/tracers/internal/tracers/prestate_tracer.js | 10 +++++----- internal/jsre/deps/web3.js | 2 +- log/README_ETHEREUM.md | 2 +- swarm/dev/Makefile | 8 ++++---- swarm/dev/bashrc | 2 +- swarm/dev/run.sh | 2 +- vendor/vendor.json | 2 +- 47 files changed, 166 insertions(+), 166 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9f2dbfcb80..9cc4dff044 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,15 +2,15 @@ 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/ethereum/go-ethereum/wiki) for more info +in the right hands. Please check our [Wiki page](https://github.com/ethereum/go-etherfact/wiki) for more info and help. ## Contributing -If you'd like to contribute to go-ethereum please fork, fix, commit and +If you'd like to contribute to go-etherfact 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/ethereum/go-ethereum/wiki/Developers'-Guide) +See [Developers' Guide](https://github.com/ethereum/go-etherfact/wiki/Developers'-Guide) for more details on configuring your environment, testing, and dependency management. diff --git a/.travis.yml b/.travis.yml index 932bd52fd2..5172bab192 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: go -go_import_path: github.com/ethereum/go-ethereum +go_import_path: github.com/ethereum/go-etherfact sudo: false matrix: include: diff --git a/AUTHORS b/AUTHORS index bd44a3de55..04222e352b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -# This is the official list of go-ethereum authors for copyright purposes. +# This is the official list of go-etherfact authors for copyright purposes. Afri Schoedon <5chdn@users.noreply.github.com> Agustin Armellini Fischer diff --git a/COPYING b/COPYING index 8d66e87723..e3afe59260 100644 --- a/COPYING +++ b/COPYING @@ -1,7 +1,7 @@ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 - Copyright (C) 2014 The go-ethereum Authors. + Copyright (C) 2014 The go-etherfact Authors. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. diff --git a/Dockerfile b/Dockerfile index 665f79d6b7..b25bb89613 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,14 @@ FROM golang:1.10-alpine as builder RUN apk add --no-cache make gcc musl-dev linux-headers -ADD . /go-ethereum -RUN cd /go-ethereum && make getf +ADD . /go-etherfact +RUN cd /go-etherfact && make getf # Pull Geth into a second stage deploy alpine container FROM alpine:latest RUN apk add --no-cache ca-certificates -COPY --from=builder /go-ethereum/build/bin/getf /usr/local/bin/ +COPY --from=builder /go-etherfact/build/bin/getf /usr/local/bin/ RUN addgroup -g 1000 getf && \ adduser -h /root -D -u 1000 -G getf getf && \ diff --git a/Dockerfile.alltools b/Dockerfile.alltools index 7ed576fc9f..69b8778417 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -3,14 +3,14 @@ FROM golang:1.10-alpine as builder RUN apk add --no-cache make gcc musl-dev linux-headers -ADD . /go-ethereum -RUN cd /go-ethereum && make all +ADD . /go-etherfact +RUN cd /go-etherfact && make all # Pull all binaries into a second stage deploy alpine container FROM alpine:latest RUN apk add --no-cache ca-certificates -COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/ +COPY --from=builder /go-etherfact/build/bin/* /usr/local/bin/ RUN addgroup -g 1000 getf && \ adduser -h /root -D -u 1000 -G getf getf && \ diff --git a/appveyor.yml b/appveyor.yml index 141ef16ff8..67d11c4b39 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ os: Visual Studio 2015 # Clone directly into GOPATH. -clone_folder: C:\gopath\src\github.com\ethereum\go-ethereum +clone_folder: C:\gopath\src\github.com\ethereum\go-etherfact clone_depth: 5 version: "{branch}.{build}" environment: diff --git a/build/ci-notes.md b/build/ci-notes.md index 9ec0d34ca9..282d52ec89 100644 --- a/build/ci-notes.md +++ b/build/ci-notes.md @@ -13,7 +13,7 @@ and installs the new version into the PPA repository. Launchpad requires a valid by a team member for source package uploads. The signing key is stored in an environment variable which Travis CI makes available to certain builds. -We want to build go-ethereum with the most recent version of Go, irrespective of the Go +We want to build go-etherfact with the most recent version of Go, irrespective of the Go version that is available in the main Ubuntu repository. In order to make this possible, our PPA depends on the ~gophers/ubuntu/archive PPA. Our source package build-depends on golang-1.10, which is co-installable alongside the regular golang package. PPA dependencies diff --git a/build/deb.control b/build/deb.control index fee74e815e..2d1f17b143 100644 --- a/build/deb.control +++ b/build/deb.control @@ -5,8 +5,8 @@ Maintainer: {{.Author}} Build-Depends: debhelper (>= 8.0.0), golang-1.10 Standards-Version: 3.9.5 Homepage: https://ethereum.org -Vcs-Git: git://github.com/ethereum/go-ethereum.git -Vcs-Browser: https://github.com/ethereum/go-ethereum +Vcs-Git: git://github.com/ethereum/go-etherfact.git +Vcs-Browser: https://github.com/ethereum/go-etherfact Package: {{.Name}} Architecture: any diff --git a/build/deb.copyright b/build/deb.copyright index 513be45b19..31b37d2bbd 100644 --- a/build/deb.copyright +++ b/build/deb.copyright @@ -1,14 +1,14 @@ -Copyright 2016 The go-ethereum Authors +Copyright 2016 The go-etherfact Authors -go-ethereum is free software: you can redistribute it and/or modify +go-etherfact is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. -go-ethereum is distributed in the hope that it will be useful, +go-etherfact is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License -along with go-ethereum. If not, see . +along with go-etherfact. If not, see . diff --git a/build/env.sh b/build/env.sh index d158192159..d8e44e679f 100755 --- a/build/env.sh +++ b/build/env.sh @@ -6,10 +6,10 @@ set -e workspace="$PWD/build/_workspace" root="$PWD" ethdir="$workspace/src/github.com/ethereum" -if [ ! -L "$ethdir/go-ethereum" ]; then +if [ ! -L "$ethdir/go-etherfact" ]; then mkdir -p "$ethdir" cd "$ethdir" - ln -s ../../../../../. go-ethereum + ln -s ../../../../../. go-etherfact cd "$root" fi @@ -18,8 +18,8 @@ GOPATH="$workspace" export GOPATH # Run the command inside the workspace. -cd "$ethdir/go-ethereum" -PWD="$ethdir/go-ethereum" +cd "$ethdir/go-etherfact" +PWD="$ethdir/go-etherfact" # Launch the arguments with the configured environment. exec "$@" diff --git a/build/mvn.pom b/build/mvn.pom index e3d970fdfa..6dcaf5c7f7 100644 --- a/build/mvn.pom +++ b/build/mvn.pom @@ -10,8 +10,8 @@ aar Android Ethereum Client - Android port of the go-ethereum libraries and node - https://github.com/ethereum/go-ethereum + Android port of the go-etherfact libraries and node + https://github.com/ethereum/go-etherfact 2015 @@ -48,10 +48,10 @@ GitHub Issues - https://github.com/ethereum/go-ethereum/issues/ + https://github.com/ethereum/go-etherfact/issues/ - https://github.com/ethereum/go-ethereum + https://github.com/ethereum/go-etherfact diff --git a/build/nsis.install.nsh b/build/nsis.install.nsh index 31e5892886..951933161a 100644 --- a/build/nsis.install.nsh +++ b/build/nsis.install.nsh @@ -3,9 +3,9 @@ InstallDir "$InstDir" OutFile "${OUTPUTFILE}" # set through command line arguments # Links for "Add/Remove Programs" -!define HELPURL "https://github.com/ethereum/go-ethereum/issues" -!define UPDATEURL "https://github.com/ethereum/go-ethereum/releases" -!define ABOUTURL "https://github.com/ethereum/go-ethereum#ethereum-go" +!define HELPURL "https://github.com/ethereum/go-etherfact/issues" +!define UPDATEURL "https://github.com/ethereum/go-etherfact/releases" +!define ABOUTURL "https://github.com/ethereum/go-etherfact#ethereum-go" !define /date NOW "%Y%m%d" PageEx license diff --git a/build/pod.podspec b/build/pod.podspec index 2c14c280c7..ecac0c36e3 100644 --- a/build/pod.podspec +++ b/build/pod.podspec @@ -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/ethereum/go-ethereum' + spec.homepage = 'https://github.com/ethereum/go-etherfact' spec.authors = { {{range .Contributors}} '{{.Name}}' => '{{.Email}}',{{end}} } spec.summary = 'iOS Ethereum Client' - spec.source = { :git => 'https://github.com/ethereum/go-ethereum.git', :commit => '{{.Commit}}' } + spec.source = { :git => 'https://github.com/ethereum/go-etherfact.git', :commit => '{{.Commit}}' } spec.platform = :ios spec.ios.deployment_target = '9.0' diff --git a/circle.yml b/circle.yml index 5bb4204d85..1f14a2a7ea 100644 --- a/circle.yml +++ b/circle.yml @@ -28,5 +28,5 @@ test: - cp ./build/bin/getf $HOME/getf # Run hive and move all generated logs into the public artifacts folder - - (cd ~/.go_workspace/src/github.com/karalabe/hive && hive --docker-noshell --client=go-ethereum:local --override=$HOME/getf --test=. --sim=.) + - (cd ~/.go_workspace/src/github.com/karalabe/hive && hive --docker-noshell --client=go-etherfact:local --override=$HOME/getf --test=. --sim=.) - cp -r ~/.go_workspace/src/github.com/karalabe/hive/workspace/logs/* $CIRCLE_ARTIFACTS diff --git a/containers/docker/develop-alpine/Dockerfile b/containers/docker/develop-alpine/Dockerfile index bd552c3f7a..c1c9fe0bf0 100644 --- a/containers/docker/develop-alpine/Dockerfile +++ b/containers/docker/develop-alpine/Dockerfile @@ -2,11 +2,11 @@ FROM alpine:3.7 RUN \ apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ - git clone --depth 1 https://github.com/ethereum/go-ethereum && \ - (cd go-ethereum && make getf) && \ - cp go-ethereum/build/bin/getf /getf && \ + git clone --depth 1 https://github.com/ethereum/go-etherfact && \ + (cd go-etherfact && make getf) && \ + cp go-etherfact/build/bin/getf /getf && \ apk del go git make gcc musl-dev linux-headers && \ - rm -rf /go-ethereum && rm -rf /var/cache/apk/* + rm -rf /go-etherfact && rm -rf /var/cache/apk/* EXPOSE 8545 EXPOSE 30303 diff --git a/containers/docker/develop-ubuntu/Dockerfile b/containers/docker/develop-ubuntu/Dockerfile index e72d94324b..95badce4b2 100644 --- a/containers/docker/develop-ubuntu/Dockerfile +++ b/containers/docker/develop-ubuntu/Dockerfile @@ -5,11 +5,11 @@ ENV PATH=/usr/lib/go-1.9/bin:$PATH RUN \ apt-get update && apt-get upgrade -q -y && \ apt-get install -y --no-install-recommends golang-1.9 git make gcc libc-dev ca-certificates && \ - git clone --depth 1 https://github.com/ethereum/go-ethereum && \ - (cd go-ethereum && make getf) && \ - cp go-ethereum/build/bin/getf /getf && \ + git clone --depth 1 https://github.com/ethereum/go-etherfact && \ + (cd go-etherfact && make getf) && \ + cp go-etherfact/build/bin/getf /getf && \ apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \ - rm -rf /go-ethereum + rm -rf /go-etherfact EXPOSE 8545 EXPOSE 30303 diff --git a/containers/docker/master-alpine/Dockerfile b/containers/docker/master-alpine/Dockerfile index 68d02ed3c1..c47f4f45a9 100644 --- a/containers/docker/master-alpine/Dockerfile +++ b/containers/docker/master-alpine/Dockerfile @@ -2,11 +2,11 @@ FROM alpine:3.7 RUN \ apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ - git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \ - (cd go-ethereum && make getf) && \ - cp go-ethereum/build/bin/getf /getf && \ + git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-etherfact && \ + (cd go-etherfact && make getf) && \ + cp go-etherfact/build/bin/getf /getf && \ apk del go git make gcc musl-dev linux-headers && \ - rm -rf /go-ethereum && rm -rf /var/cache/apk/* + rm -rf /go-etherfact && rm -rf /var/cache/apk/* EXPOSE 8545 EXPOSE 30303 diff --git a/containers/docker/master-ubuntu/Dockerfile b/containers/docker/master-ubuntu/Dockerfile index 1fd04891f2..cbc2c2497d 100644 --- a/containers/docker/master-ubuntu/Dockerfile +++ b/containers/docker/master-ubuntu/Dockerfile @@ -5,11 +5,11 @@ ENV PATH=/usr/lib/go-1.9/bin:$PATH RUN \ apt-get update && apt-get upgrade -q -y && \ apt-get install -y --no-install-recommends golang-1.9 git make gcc libc-dev ca-certificates && \ - git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \ - (cd go-ethereum && make getf) && \ - cp go-ethereum/build/bin/getf /getf && \ + git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-etherfact && \ + (cd go-etherfact && make getf) && \ + cp go-etherfact/build/bin/getf /getf && \ apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \ - rm -rf /go-ethereum + rm -rf /go-etherfact EXPOSE 8545 EXPOSE 30303 diff --git a/crypto/secp256k1/ext.h b/crypto/secp256k1/ext.h index 9b043c724e..757f4f85a9 100644 --- a/crypto/secp256k1/ext.h +++ b/crypto/secp256k1/ext.h @@ -1,18 +1,18 @@ -// Copyright 2015 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2015 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // secp256k1_context_create_sign_verify creates a context for signing and signature verification. static secp256k1_context* secp256k1_context_create_sign_verify() { diff --git a/dashboard/README.md b/dashboard/README.md index 86a3cba2a3..f1241d2aa9 100644 --- a/dashboard/README.md +++ b/dashboard/README.md @@ -9,7 +9,7 @@ The client's UI uses [React][React] with JSX syntax, which is validated by the [ ### Development and bundling -As the dashboard depends on certain NPM packages (which are not included in the `go-ethereum` repo), these need to be installed first: +As the dashboard depends on certain NPM packages (which are not included in the `go-etherfact` repo), these need to be installed first: ``` $ (cd dashboard/assets && yarn install && yarn flow) diff --git a/dashboard/assets/.eslintrc b/dashboard/assets/.eslintrc index ab7a3a0392..18584117c4 100644 --- a/dashboard/assets/.eslintrc +++ b/dashboard/assets/.eslintrc @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // React syntax style mostly according to https://github.com/airbnb/javascript/tree/master/react { diff --git a/dashboard/assets/common.jsx b/dashboard/assets/common.jsx index 08a7554fff..bb4e52a232 100644 --- a/dashboard/assets/common.jsx +++ b/dashboard/assets/common.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . type ProvidedMenuProp = {|title: string, icon: string|}; const menuSkeletons: Array<{|id: string, menu: ProvidedMenuProp|}> = [ diff --git a/dashboard/assets/components/Body.jsx b/dashboard/assets/components/Body.jsx index 054e040648..aeb24da973 100644 --- a/dashboard/assets/components/Body.jsx +++ b/dashboard/assets/components/Body.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/components/ChartRow.jsx b/dashboard/assets/components/ChartRow.jsx index 1075346fe4..c5f2186232 100644 --- a/dashboard/assets/components/ChartRow.jsx +++ b/dashboard/assets/components/ChartRow.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2018 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2018 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; import type {ChildrenArray} from 'react'; diff --git a/dashboard/assets/components/CustomTooltip.jsx b/dashboard/assets/components/CustomTooltip.jsx index 3405f93056..fea089f94f 100644 --- a/dashboard/assets/components/CustomTooltip.jsx +++ b/dashboard/assets/components/CustomTooltip.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2018 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2018 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/components/Dashboard.jsx b/dashboard/assets/components/Dashboard.jsx index 8e6bf98695..2a6d3f1ad4 100644 --- a/dashboard/assets/components/Dashboard.jsx +++ b/dashboard/assets/components/Dashboard.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/components/Footer.jsx b/dashboard/assets/components/Footer.jsx index 20830cbba8..ec2443ae80 100644 --- a/dashboard/assets/components/Footer.jsx +++ b/dashboard/assets/components/Footer.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; @@ -165,7 +165,7 @@ class Footer extends Component { {general.commit && ( {'Commit '} - + {general.commit.substring(0, 8)} diff --git a/dashboard/assets/components/Header.jsx b/dashboard/assets/components/Header.jsx index ccdfbc6f02..ebd12fe5a0 100644 --- a/dashboard/assets/components/Header.jsx +++ b/dashboard/assets/components/Header.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/components/Main.jsx b/dashboard/assets/components/Main.jsx index fba8ca1f61..c3241d8915 100644 --- a/dashboard/assets/components/Main.jsx +++ b/dashboard/assets/components/Main.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/components/SideBar.jsx b/dashboard/assets/components/SideBar.jsx index 463d6cb40f..e8de568601 100644 --- a/dashboard/assets/components/SideBar.jsx +++ b/dashboard/assets/components/SideBar.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React, {Component} from 'react'; diff --git a/dashboard/assets/fa-only-woff-loader.js b/dashboard/assets/fa-only-woff-loader.js index 4d30357361..2a15d6257d 100644 --- a/dashboard/assets/fa-only-woff-loader.js +++ b/dashboard/assets/fa-only-woff-loader.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // fa-only-woff-loader removes the .eot, .ttf, .svg dependencies of the FontAwesome library, // because they produce unused extra blobs. diff --git a/dashboard/assets/index.jsx b/dashboard/assets/index.jsx index 4ee567b01b..993a2458f9 100644 --- a/dashboard/assets/index.jsx +++ b/dashboard/assets/index.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . import React from 'react'; import {render} from 'react-dom'; diff --git a/dashboard/assets/types/content.jsx b/dashboard/assets/types/content.jsx index 0e2e0b49de..5acbfa952a 100644 --- a/dashboard/assets/types/content.jsx +++ b/dashboard/assets/types/content.jsx @@ -1,20 +1,20 @@ // @flow -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . export type Content = { general: General, diff --git a/dashboard/assets/webpack.config.js b/dashboard/assets/webpack.config.js index f58d35ad1e..9f17ad8f41 100644 --- a/dashboard/assets/webpack.config.js +++ b/dashboard/assets/webpack.config.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . const webpack = require('webpack'); const path = require('path'); diff --git a/eth/tracers/internal/tracers/4byte_tracer.js b/eth/tracers/internal/tracers/4byte_tracer.js index 0a6b088cca..769bfc6ed0 100644 --- a/eth/tracers/internal/tracers/4byte_tracer.js +++ b/eth/tracers/internal/tracers/4byte_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // 4byteTracer searches for 4byte-identifiers, and collects them for post-processing. // It collects the methods identifiers along with the size of the supplied data, so diff --git a/eth/tracers/internal/tracers/call_tracer.js b/eth/tracers/internal/tracers/call_tracer.js index 83495b1574..25248aeb5c 100644 --- a/eth/tracers/internal/tracers/call_tracer.js +++ b/eth/tracers/internal/tracers/call_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // callTracer is a full blown transaction tracer that extracts and reports all // the internal calls made by a transaction, along with any useful information. diff --git a/eth/tracers/internal/tracers/evmdis_tracer.js b/eth/tracers/internal/tracers/evmdis_tracer.js index 2790e0fd52..22dd24792e 100644 --- a/eth/tracers/internal/tracers/evmdis_tracer.js +++ b/eth/tracers/internal/tracers/evmdis_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // evmdisTracer returns sufficent information from a trace to perform evmdis-style // disassembly. diff --git a/eth/tracers/internal/tracers/noop_tracer.js b/eth/tracers/internal/tracers/noop_tracer.js index f966ddc7d3..3126332833 100644 --- a/eth/tracers/internal/tracers/noop_tracer.js +++ b/eth/tracers/internal/tracers/noop_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // noopTracer is just the barebone boilerplate code required from a JavaScript // object to be usable as a transaction tracer. diff --git a/eth/tracers/internal/tracers/opcount_tracer.js b/eth/tracers/internal/tracers/opcount_tracer.js index f7984c741a..25afad64e3 100644 --- a/eth/tracers/internal/tracers/opcount_tracer.js +++ b/eth/tracers/internal/tracers/opcount_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // opcountTracer is a sample tracer that just counts the number of instructions // executed by the EVM before the transaction terminated. diff --git a/eth/tracers/internal/tracers/prestate_tracer.js b/eth/tracers/internal/tracers/prestate_tracer.js index 99f71d2c33..fa8913d48f 100644 --- a/eth/tracers/internal/tracers/prestate_tracer.js +++ b/eth/tracers/internal/tracers/prestate_tracer.js @@ -1,18 +1,18 @@ -// Copyright 2017 The go-ethereum Authors -// This file is part of the go-ethereum library. +// Copyright 2017 The go-etherfact Authors +// This file is part of the go-etherfact library. // -// The go-ethereum library is free software: you can redistribute it and/or modify +// The go-etherfact library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // -// The go-ethereum library is distributed in the hope that it will be useful, +// The go-etherfact library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License -// along with the go-ethereum library. If not, see . +// along with the go-etherfact library. If not, see . // prestateTracer outputs sufficient information to create a local execution of // the transaction from a custom assembled genesis block. diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 9bb899384b..25f268d6c5 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -5862,7 +5862,7 @@ module.exports = Shh; * @author Alex Beregszaszi * @date 2016 * - * Reference: https://github.com/ethereum/go-ethereum/blob/swarm/internal/web3ext/web3ext.go#L33 + * Reference: https://github.com/ethereum/go-etherfact/blob/swarm/internal/web3ext/web3ext.go#L33 */ "use strict"; diff --git a/log/README_ETHEREUM.md b/log/README_ETHEREUM.md index f6c42ccc03..4e464137a2 100644 --- a/log/README_ETHEREUM.md +++ b/log/README_ETHEREUM.md @@ -1,5 +1,5 @@ This package is a fork of https://github.com/inconshreveable/log15, with some -minor modifications required by the go-ethereum codebase: +minor modifications required by the go-etherfact codebase: * Support for log level `trace` * Modified behavior to exit on `critical` failure diff --git a/swarm/dev/Makefile b/swarm/dev/Makefile index 8754ec6678..460213d539 100644 --- a/swarm/dev/Makefile +++ b/swarm/dev/Makefile @@ -3,12 +3,12 @@ default: build build: - go build -o bin/swarm github.com/ethereum/go-ethereum/cmd/swarm - go build -o bin/getf github.com/ethereum/go-ethereum/cmd/getf - go build -o bin/bootnode github.com/ethereum/go-ethereum/cmd/bootnode + go build -o bin/swarm github.com/ethereum/go-etherfact/cmd/swarm + go build -o bin/getf github.com/ethereum/go-etherfact/cmd/getf + go build -o bin/bootnode github.com/ethereum/go-etherfact/cmd/bootnode cluster: build scripts/boot-cluster.sh test: - go test -v github.com/ethereum/go-ethereum/swarm/... + go test -v github.com/ethereum/go-etherfact/swarm/... diff --git a/swarm/dev/bashrc b/swarm/dev/bashrc index e1230128a9..50fb22ff54 100644 --- a/swarm/dev/bashrc +++ b/swarm/dev/bashrc @@ -1,4 +1,4 @@ -export ROOT="${GOPATH}/src/github.com/ethereum/go-ethereum" +export ROOT="${GOPATH}/src/github.com/ethereum/go-etherfact" export PATH="${ROOT}/swarm/dev/bin:${PATH}" cd "${ROOT}/swarm/dev" diff --git a/swarm/dev/run.sh b/swarm/dev/run.sh index 2ad600dedf..34d0de9acc 100755 --- a/swarm/dev/run.sh +++ b/swarm/dev/run.sh @@ -80,7 +80,7 @@ run_image() { --rm \ --hostname "${name}" \ --name "${name}" \ - --volume "${ROOT}:/go/src/github.com/ethereum/go-ethereum" \ + --volume "${ROOT}:/go/src/github.com/ethereum/go-etherfact" \ --volume "/var/run/docker.sock:/var/run/docker.sock" \ ${docker_args} \ "${name}" \ diff --git a/vendor/vendor.json b/vendor/vendor.json index bf55bc437f..17aec82e01 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -766,5 +766,5 @@ "revisionTime": "2017-08-11T01:42:03Z" } ], - "rootPath": "github.com/ethereum/go-ethereum" + "rootPath": "github.com/ethereum/go-etherfact" }