Skip to content

Commit 2153253

Browse files
authored
Merge pull request #2 from cryptoecc/update_module
Update module ETH-ECC to WorldLand
2 parents adad4f0 + b5205c2 commit 2153253

File tree

898 files changed

+4018
-4015
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

898 files changed

+4018
-4015
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ smallest of fixes!
77
If you'd like to contribute to go-ethereum, please fork, fix, commit and send a
88
pull request for the maintainers to review and merge into the main code base. If
99
you wish to submit more complex changes though, please check up with the core
10-
devs first on [our gitter channel](https://gitter.im/cryptoecc/ETH-ECC) to
10+
devs first on [our gitter channel](https://gitter.im/cryptoecc/WorldLand) to
1111
ensure those changes are in line with the general philosophy of the project
1212
and/or get some early feedback which can make both your efforts much lighter as
1313
well as our review and merge procedures quick and simple.

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: go
2-
go_import_path: github.com/cryptoecc/ETH-ECC
2+
go_import_path: github.com/cryptoecc/WorldLand
33
sudo: false
44
jobs:
55
allow_failures:
@@ -155,7 +155,7 @@ jobs:
155155
script:
156156
# Build the Android archive and upload it to Maven Central and Azure
157157
- mkdir -p $GOPATH/src/github.com/ethereum
158-
- ln -s `pwd` $GOPATH/src/github.com/cryptoecc/ETH-ECC
158+
- ln -s `pwd` $GOPATH/src/github.com/cryptoecc/WorldLand
159159
- go run build/ci.go aar -signer ANDROID_SIGNING_KEY -signify SIGNIFY_KEY -deploy https://oss.sonatype.org -upload gethstore/builds
160160

161161
# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![API Reference](
44
https://camo.githubusercontent.com/915b7be44ada53c290eb157634330494ebe3e30a/68747470733a2f2f676f646f632e6f72672f6769746875622e636f6d2f676f6c616e672f6764646f3f7374617475732e737667
5-
)](https://pkg.go.dev/github.com/cryptoecc/ETH-ECC?tab=doc)
6-
[![Go Report Card](https://goreportcard.com/badge/github.com/cryptoecc/ETH-ECC)](https://goreportcard.com/report/github.com/cryptoecc/ETH-ECC).
5+
)](https://pkg.go.dev/github.com/cryptoecc/WorldLand?tab=doc)
6+
[![Go Report Card](https://goreportcard.com/badge/github.com/cryptoecc/WorldLand)](https://goreportcard.com/report/github.com/cryptoecc/WorldLand).
77

88
> Official Node client of the Worldland blockchain.
99
> It is a fork of [ethereum/go-ethereum](https://github.com/ethereum/go-ethereum)
@@ -18,11 +18,11 @@ Worldland is an EVM-compatible blockchain that uses [Error-Correction Code Proof
1818
Thank you for considering helping out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!
1919

2020
## License
21-
The ETH-ECC library (i.e. all code outside of the `cmd` directory) is licensed under the
21+
The WorldLand library (i.e. all code outside of the `cmd` directory) is licensed under the
2222
[GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html),
2323
also included in our repository in the `COPYING.LESSER` file.
2424

25-
The ETH-ECC binaries (i.e. all code inside of the `cmd` directory) is licensed under the
25+
The WorldLand binaries (i.e. all code inside of the `cmd` directory) is licensed under the
2626
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also
2727
included in our repository in the `COPYING` file.
2828

accounts/abi/abi.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"fmt"
2424
"io"
2525

26-
"github.com/cryptoecc/ETH-ECC/common"
27-
"github.com/cryptoecc/ETH-ECC/crypto"
26+
"github.com/cryptoecc/WorldLand/common"
27+
"github.com/cryptoecc/WorldLand/crypto"
2828
)
2929

3030
// The ABI holds information about a contract's context and available

accounts/abi/abi_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ import (
2626
"strings"
2727
"testing"
2828

29-
"github.com/cryptoecc/ETH-ECC/common"
30-
"github.com/cryptoecc/ETH-ECC/common/math"
31-
"github.com/cryptoecc/ETH-ECC/crypto"
29+
"github.com/cryptoecc/WorldLand/common"
30+
"github.com/cryptoecc/WorldLand/common/math"
31+
"github.com/cryptoecc/WorldLand/crypto"
3232
)
3333

3434
const jsondata = `

accounts/abi/bind/auth.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ import (
2323
"io"
2424
"math/big"
2525

26-
"github.com/cryptoecc/ETH-ECC/accounts"
27-
"github.com/cryptoecc/ETH-ECC/accounts/external"
28-
"github.com/cryptoecc/ETH-ECC/accounts/keystore"
29-
"github.com/cryptoecc/ETH-ECC/common"
30-
"github.com/cryptoecc/ETH-ECC/core/types"
31-
"github.com/cryptoecc/ETH-ECC/crypto"
32-
"github.com/cryptoecc/ETH-ECC/log"
26+
"github.com/cryptoecc/WorldLand/accounts"
27+
"github.com/cryptoecc/WorldLand/accounts/external"
28+
"github.com/cryptoecc/WorldLand/accounts/keystore"
29+
"github.com/cryptoecc/WorldLand/common"
30+
"github.com/cryptoecc/WorldLand/core/types"
31+
"github.com/cryptoecc/WorldLand/crypto"
32+
"github.com/cryptoecc/WorldLand/log"
3333
)
3434

3535
// ErrNoChainID is returned whenever the user failed to specify a chain id.

accounts/abi/bind/backend.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"errors"
2222
"math/big"
2323

24-
ethereum "github.com/cryptoecc/ETH-ECC"
25-
"github.com/cryptoecc/ETH-ECC/common"
26-
"github.com/cryptoecc/ETH-ECC/core/types"
24+
ethereum "github.com/cryptoecc/WorldLand"
25+
"github.com/cryptoecc/WorldLand/common"
26+
"github.com/cryptoecc/WorldLand/core/types"
2727
)
2828

2929
var (

accounts/abi/bind/backends/simulated.go

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ import (
2424
"sync"
2525
"time"
2626

27-
ethereum "github.com/cryptoecc/ETH-ECC"
28-
"github.com/cryptoecc/ETH-ECC/accounts/abi"
29-
"github.com/cryptoecc/ETH-ECC/accounts/abi/bind"
30-
"github.com/cryptoecc/ETH-ECC/common"
31-
"github.com/cryptoecc/ETH-ECC/common/hexutil"
32-
"github.com/cryptoecc/ETH-ECC/common/math"
33-
"github.com/cryptoecc/ETH-ECC/consensus/ethash"
34-
"github.com/cryptoecc/ETH-ECC/core"
35-
"github.com/cryptoecc/ETH-ECC/core/bloombits"
36-
"github.com/cryptoecc/ETH-ECC/core/rawdb"
37-
"github.com/cryptoecc/ETH-ECC/core/state"
38-
"github.com/cryptoecc/ETH-ECC/core/types"
39-
"github.com/cryptoecc/ETH-ECC/core/vm"
40-
"github.com/cryptoecc/ETH-ECC/eth/filters"
41-
"github.com/cryptoecc/ETH-ECC/ethdb"
42-
"github.com/cryptoecc/ETH-ECC/event"
43-
"github.com/cryptoecc/ETH-ECC/log"
44-
"github.com/cryptoecc/ETH-ECC/params"
45-
"github.com/cryptoecc/ETH-ECC/rpc"
27+
ethereum "github.com/cryptoecc/WorldLand"
28+
"github.com/cryptoecc/WorldLand/accounts/abi"
29+
"github.com/cryptoecc/WorldLand/accounts/abi/bind"
30+
"github.com/cryptoecc/WorldLand/common"
31+
"github.com/cryptoecc/WorldLand/common/hexutil"
32+
"github.com/cryptoecc/WorldLand/common/math"
33+
"github.com/cryptoecc/WorldLand/consensus/ethash"
34+
"github.com/cryptoecc/WorldLand/core"
35+
"github.com/cryptoecc/WorldLand/core/bloombits"
36+
"github.com/cryptoecc/WorldLand/core/rawdb"
37+
"github.com/cryptoecc/WorldLand/core/state"
38+
"github.com/cryptoecc/WorldLand/core/types"
39+
"github.com/cryptoecc/WorldLand/core/vm"
40+
"github.com/cryptoecc/WorldLand/eth/filters"
41+
"github.com/cryptoecc/WorldLand/ethdb"
42+
"github.com/cryptoecc/WorldLand/event"
43+
"github.com/cryptoecc/WorldLand/log"
44+
"github.com/cryptoecc/WorldLand/params"
45+
"github.com/cryptoecc/WorldLand/rpc"
4646
)
4747

4848
// This nil assignment ensures at compile time that SimulatedBackend implements bind.ContractBackend.

accounts/abi/bind/backends/simulated_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ import (
2727
"testing"
2828
"time"
2929

30-
"github.com/cryptoecc/ETH-ECC"
31-
"github.com/cryptoecc/ETH-ECC/accounts/abi"
32-
"github.com/cryptoecc/ETH-ECC/accounts/abi/bind"
33-
"github.com/cryptoecc/ETH-ECC/common"
34-
"github.com/cryptoecc/ETH-ECC/core"
35-
"github.com/cryptoecc/ETH-ECC/core/types"
36-
"github.com/cryptoecc/ETH-ECC/crypto"
37-
"github.com/cryptoecc/ETH-ECC/params"
30+
ethereum "github.com/cryptoecc/WorldLand"
31+
"github.com/cryptoecc/WorldLand/accounts/abi"
32+
"github.com/cryptoecc/WorldLand/accounts/abi/bind"
33+
"github.com/cryptoecc/WorldLand/common"
34+
"github.com/cryptoecc/WorldLand/core"
35+
"github.com/cryptoecc/WorldLand/core/types"
36+
"github.com/cryptoecc/WorldLand/crypto"
37+
"github.com/cryptoecc/WorldLand/params"
3838
)
3939

4040
func TestSimulatedBackend(t *testing.T) {

accounts/abi/bind/base.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ import (
2424
"strings"
2525
"sync"
2626

27-
ethereum "github.com/cryptoecc/ETH-ECC"
28-
"github.com/cryptoecc/ETH-ECC/accounts/abi"
29-
"github.com/cryptoecc/ETH-ECC/common"
30-
"github.com/cryptoecc/ETH-ECC/core/types"
31-
"github.com/cryptoecc/ETH-ECC/crypto"
32-
"github.com/cryptoecc/ETH-ECC/event"
33-
)
27+
ethereum "github.com/cryptoecc/WorldLand"
28+
"github.com/cryptoecc/WorldLand/accounts/abi"
29+
"github.com/cryptoecc/WorldLand/common"
30+
"github.com/cryptoecc/WorldLand/core/types"
31+
"github.com/cryptoecc/WorldLand/crypto"
32+
"github.com/cryptoecc/WorldLand/event"
33+
)
3434

3535
const basefeeWiggleMultiplier = 2
3636

0 commit comments

Comments
 (0)