Skip to content

Commit 032970b

Browse files
authored
Merge pull request #152 from binance-chain/upgrade_1.10.2
[R4R] Upgrade to 1.10.3
2 parents e3c241a + 3ab97c2 commit 032970b

File tree

935 files changed

+99596
-42860
lines changed

Some content is hidden

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

935 files changed

+99596
-42860
lines changed

.github/CODEOWNERS

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33

44
accounts/usbwallet @karalabe
55
accounts/scwallet @gballet
6-
accounts/abi @gballet
6+
accounts/abi @gballet @MariusVanDerWijden
77
cmd/clef @holiman
88
cmd/puppeth @karalabe
99
consensus @karalabe
1010
core/ @karalabe @holiman @rjl493456442
11-
dashboard/ @kurkomisi
1211
eth/ @karalabe @holiman @rjl493456442
12+
eth/catalyst/ @gballet
1313
graphql/ @gballet
1414
les/ @zsfelfoldi @rjl493456442
1515
light/ @zsfelfoldi @rjl493456442
1616
mobile/ @karalabe @ligi
17+
node/ @fjl @renaynay
1718
p2p/ @fjl @zsfelfoldi
1819
rpc/ @fjl @holiman
19-
p2p/simulations @zelig @janos @justelad
20-
p2p/protocols @zelig @janos @justelad
21-
p2p/testing @zelig @janos @justelad
20+
p2p/simulations @fjl
21+
p2p/protocols @fjl
22+
p2p/testing @fjl
2223
signer/ @holiman
23-
whisper/ @gballet @gluk256

.github/CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ Please make sure your contributions adhere to our coding guidelines:
3030
Before you submit a feature request, please check and make sure that it isn't
3131
possible through some other means. The JavaScript-enabled console is a powerful
3232
feature in the right hands. Please check our
33-
[Wiki page](https://github.com/ethereum/go-ethereum/wiki) for more info
33+
[Geth documentation page](https://geth.ethereum.org/docs/) for more info
3434
and help.
3535

3636
## Configuration, dependencies, and tests
3737

38-
Please see the [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide)
38+
Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers/devguide)
3939
for more details on configuring your environment, managing project dependencies
4040
and testing procedures.

.github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/bug.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
Hi there,
2-
3-
Please note that this is an issue tracker reserved for bug reports and feature requests.
4-
5-
For general questions please use [discord](https://discord.gg/nthXNEv) or the Ethereum stack exchange at https://ethereum.stackexchange.com.
1+
---
2+
name: Report a bug
3+
about: Something with go-ethereum is not working as expected
4+
title: ''
5+
labels: 'type:bug'
6+
assignees: ''
7+
---
68

79
#### System information
810

@@ -24,3 +26,5 @@ Commit hash : (if `develop`)
2426
````
2527
[backtrace]
2628
````
29+
30+
When submitting logs: please submit them as text and not screenshots.

.github/ISSUE_TEMPLATE/feature.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Request a feature
3+
about: Report a missing feature - e.g. as a step before submitting a PR
4+
title: ''
5+
labels: 'type:feature'
6+
assignees: ''
7+
---
8+
9+
# Rationale
10+
11+
Why should this feature exist?
12+
What are the use-cases?
13+
14+
# Implementation
15+
16+
Do you have ideas regarding the implementation of this feature?
17+
Are you willing to implement this feature?

.github/ISSUE_TEMPLATE/question.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Ask a question
3+
about: Something is unclear
4+
title: ''
5+
labels: 'type:docs'
6+
assignees: ''
7+
---
8+
9+
This should only be used in very rare cases e.g. if you are not 100% sure if something is a bug or asking a question that leads to improving the documentation. For general questions please use [discord](https://discord.gg/nthXNEv) or the Ethereum stack exchange at https://ethereum.stackexchange.com.

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file configures github.com/golangci/golangci-lint.
22

33
run:
4-
timeout: 2m
4+
timeout: 3m
55
tests: true
66
# default is true. Enables skipping of directories:
77
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$

0 commit comments

Comments
 (0)