-
Notifications
You must be signed in to change notification settings - Fork 20.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into abigen-slices
- Loading branch information
Showing
1,950 changed files
with
428,077 additions
and
92,235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
**/.git | ||
.git | ||
!.git/HEAD | ||
!.git/refs/heads | ||
**/*_test.go | ||
|
||
build/_workspace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
*.sol linguist-language=Solidity |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
accounts/usbwallet @karalabe | ||
accounts/abi @gballet | ||
consensus @karalabe | ||
core/ @karalabe @holiman | ||
eth/ @karalabe | ||
les/ @zsfelfoldi | ||
light/ @zsfelfoldi | ||
mobile/ @karalabe | ||
p2p/ @fjl @zsfelfoldi | ||
p2p/simulations @lmars | ||
p2p/protocols @zelig | ||
swarm/api/http @justelad | ||
swarm/bmt @zelig | ||
swarm/dev @lmars | ||
swarm/fuse @jmozah @holisticode | ||
swarm/grafana_dashboards @nonsense | ||
swarm/metrics @nonsense @holisticode | ||
swarm/multihash @nolash | ||
swarm/network/bitvector @zelig @janos | ||
swarm/network/priorityqueue @zelig @janos | ||
swarm/network/simulations @zelig @janos | ||
swarm/network/stream @janos @zelig @holisticode @justelad | ||
swarm/network/stream/intervals @janos | ||
swarm/network/stream/testing @zelig | ||
swarm/pot @zelig | ||
swarm/pss @nolash @zelig @nonsense | ||
swarm/services @zelig | ||
swarm/state @justelad | ||
swarm/storage/encryption @zelig @nagydani | ||
swarm/storage/mock @janos | ||
swarm/storage/feed @nolash @jpeletier | ||
swarm/testutil @lmars | ||
whisper/ @gballet @gluk256 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,40 @@ | ||
# Contributing | ||
|
||
Thank you for considering to help out with the source code! We welcome | ||
contributions from anyone on the internet, and are grateful for even the | ||
smallest of fixes! | ||
|
||
If you'd like to contribute to go-ethereum, please fork, fix, commit and send a | ||
pull request for the maintainers to review and merge into the main code base. If | ||
you wish to submit more complex changes though, please check up with the core | ||
devs first on [our gitter channel](https://gitter.im/ethereum/go-ethereum) to | ||
ensure those changes are in line with the general philosophy of the project | ||
and/or get some early feedback which can make both your efforts much lighter as | ||
well as our review and merge procedures quick and simple. | ||
|
||
## Coding guidelines | ||
|
||
Please make sure your contributions adhere to our coding guidelines: | ||
|
||
* Code must adhere to the official Go | ||
[formatting](https://golang.org/doc/effective_go.html#formatting) guidelines | ||
(i.e. uses [gofmt](https://golang.org/cmd/gofmt/)). | ||
* Code must be documented adhering to the official Go | ||
[commentary](https://golang.org/doc/effective_go.html#commentary) guidelines. | ||
* Pull requests need to be based on and opened against the `master` branch. | ||
* Commit messages should be prefixed with the package(s) they modify. | ||
* E.g. "eth, rpc: make trace configs optional" | ||
|
||
## Can I have feature X | ||
|
||
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 [Bitchin' tricks](https://github.com/ethereum/go-ethereum/wiki/bitchin-tricks) wiki page for more info | ||
Before you submit 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 | ||
and help. | ||
|
||
## Contributing | ||
|
||
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!). | ||
## Configuration, dependencies, and tests | ||
|
||
See [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide) | ||
for more details on configuring your environment, testing, and | ||
dependency management. | ||
Please see the [Developers' Guide](https://github.com/ethereum/go-ethereum/wiki/Developers'-Guide) | ||
for more details on configuring your environment, managing project dependencies | ||
and testing procedures. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 30 | ||
# Label requiring a response | ||
responseRequiredLabel: "need:more-information" | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have more relevant information or | ||
answers to our questions so that we can investigate further. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 366 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 42 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
# Label to use when marking an issue as stale | ||
staleLabel: "status:inactive" | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.