Skip to content

Commit 5d1738a

Browse files
Merge quorum 'master'
1 parent 991384a commit 5d1738a

File tree

675 files changed

+94447
-1628
lines changed

Some content is hidden

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

675 files changed

+94447
-1628
lines changed

.bintray.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"package": {
3+
"name": "geth",
4+
"repo": "quorum",
5+
"subject": "_ORGANIZATION_",
6+
"vcs_url": "https://github.com/jpmorganchase/quorum",
7+
"licenses": [
8+
"LGPL-3.0"
9+
]
10+
},
11+
"version": {
12+
"name": "_TRAVIS_TAG_",
13+
"desc": "Quorum: _TRAVIS_TAG_, Geth: _GETH_VERSION_, Commit: _TRAVIS_COMMIT_, Build Number: _TRAVIS_BUILD_NUMBER_",
14+
"released": "_RELEASED_DATE_",
15+
"vcs_tag": "_TRAVIS_TAG_",
16+
"gpgSign": true,
17+
"attributes": [
18+
{
19+
"name": "Travis",
20+
"values": [
21+
"_TRAVIS_JOB_WEB_URL_"
22+
],
23+
"type": "string"
24+
}
25+
]
26+
},
27+
"files": [
28+
{
29+
"includePattern": "/dist/(.*.tar.gz)",
30+
"uploadPattern": "_TRAVIS_TAG_/$1",
31+
"matrixParams": {
32+
"override": 1
33+
}
34+
}
35+
],
36+
"publish": true
37+
}

.github/CONTRIBUTING.md

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,42 @@
11
# Contributing
22

3-
Thank you for considering to help out with the source code! We welcome
4-
contributions from anyone on the internet, and are grateful for even the
3+
Thank you for your interest in contributing to GoQuorum!
4+
5+
We welcome contributions from anyone on the internet, and are grateful for even the
56
smallest of fixes!
67

7-
If you'd like to contribute to go-ethereum, please fork, fix, commit and send a
8-
pull request for the maintainers to review and merge into the main code base. If
9-
you wish to submit more complex changes though, please check up with the core
10-
devs first on [our gitter channel](https://gitter.im/ethereum/go-ethereum) to
11-
ensure those changes are in line with the general philosophy of the project
12-
and/or get some early feedback which can make both your efforts much lighter as
13-
well as our review and merge procedures quick and simple.
8+
If you'd like to contribute to quorum please fork, fix, commit and
9+
send a pull request. Commits which do not comply with the coding standards
10+
are ignored.
1411

1512
## Coding guidelines
1613

1714
Please make sure your contributions adhere to our coding guidelines:
1815

19-
* Code must adhere to the official Go
20-
[formatting](https://golang.org/doc/effective_go.html#formatting) guidelines
16+
* Code must adhere to the official Go
17+
[formatting](https://golang.org/doc/effective_go.html#formatting) guidelines
2118
(i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).
22-
* Code must be documented adhering to the official Go
19+
* Code must be documented adhering to the official Go
2320
[commentary](https://golang.org/doc/effective_go.html#commentary) guidelines.
2421
* Pull requests need to be based on and opened against the `master` branch.
2522
* Commit messages should be prefixed with the package(s) they modify.
2623
* E.g. "eth, rpc: make trace configs optional"
2724

2825
## Can I have feature X
2926

30-
Before you submit a feature request, please check and make sure that it isn't
31-
possible through some other means. The JavaScript-enabled console is a powerful
32-
feature in the right hands. Please check our
33-
[Geth documentation page](https://geth.ethereum.org/docs/) for more info
27+
Before you submit a feature request, please check and make sure that it isn't
28+
possible through some other means. The JavaScript-enabled console is a powerful
29+
feature in the right hands. Please check our
30+
[developer documentation](https://docs.goquorum.consensys.net/en/latest/) for more info
3431
and help.
3532

3633
## Configuration, dependencies, and tests
3734

3835
Please see the [Developers' Guide](https://geth.ethereum.org/docs/developers/devguide)
3936
for more details on configuring your environment, managing project dependencies
4037
and testing procedures.
38+
39+
## Issue reproductibility
40+
41+
Before you create an issue, please try to reproduce it with [quorum quick dev start framework](https://github.com/ConsenSys/quorum-dev-quickstart) with the latest release.
42+
Many issues have been creating under an environment we are not able to reproduce quickly.

.github/dependabot.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: gomod
9+
directory: /
10+
schedule:
11+
interval: daily

0 commit comments

Comments
 (0)