Skip to content

Commit e9a6953

Browse files
Merge pull request #25 from sadoci/metadium-to-master
Metadium to master
2 parents a8af0ca + ad68a03 commit e9a6953

File tree

1,432 files changed

+161037
-58454
lines changed

Some content is hidden

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

1,432 files changed

+161037
-58454
lines changed

.github/CODEOWNERS

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# Lines starting with '#' are comments.
22
# Each line is a file pattern followed by one or more owners.
33

4-
accounts/usbwallet @karalabe
5-
accounts/scwallet @gballet
6-
accounts/abi @gballet
7-
cmd/clef @holiman
8-
cmd/puppeth @karalabe
9-
consensus @karalabe
10-
core/ @karalabe @holiman @rjl493456442
11-
dashboard/ @kurkomisi
12-
eth/ @karalabe @holiman @rjl493456442
13-
graphql/ @gballet
14-
les/ @zsfelfoldi @rjl493456442
15-
light/ @zsfelfoldi @rjl493456442
16-
mobile/ @karalabe @ligi
17-
p2p/ @fjl @zsfelfoldi
18-
rpc/ @fjl @holiman
19-
p2p/simulations @zelig @janos @justelad
20-
p2p/protocols @zelig @janos @justelad
21-
p2p/testing @zelig @janos @justelad
22-
signer/ @holiman
23-
whisper/ @gballet @gluk256
4+
# accounts/usbwallet @karalabe
5+
# accounts/scwallet @gballet
6+
# accounts/abi @gballet @MariusVanDerWijden
7+
# cmd/clef @holiman
8+
# cmd/puppeth @karalabe
9+
# consensus @karalabe
10+
# core/ @karalabe @holiman @rjl493456442
11+
# eth/ @karalabe @holiman @rjl493456442
12+
# eth/catalyst/ @gballet
13+
# graphql/ @gballet
14+
# les/ @zsfelfoldi @rjl493456442
15+
# light/ @zsfelfoldi @rjl493456442
16+
# mobile/ @karalabe @ligi
17+
# node/ @fjl @renaynay
18+
# p2p/ @fjl @zsfelfoldi
19+
# rpc/ @fjl @holiman
20+
# p2p/simulations @fjl
21+
# p2p/protocols @fjl
22+
# p2p/testing @fjl
23+
# signer/ @holiman

.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 the gitter channel 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.

.gitmodules

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
[submodule "tests"]
22
path = tests/testdata
33
url = https://github.com/ethereum/tests
4+
shallow = true
5+
[submodule "evm-benchmarks"]
6+
path = tests/evm-benchmarks
7+
url = https://github.com/ipsilon/evm-benchmarks
8+
shallow = true
49
[submodule "rocksdb"]
510
path = rocksdb
611
url = https://github.com/facebook/rocksdb
12+
[submodule "etcd"]
13+
path = etcd
14+
url = https://github.com/metadium/etcd

.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: 20m
55
tests: true
66
# default is true. Enables skipping of directories:
77
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$

0 commit comments

Comments
 (0)