Danny Ryan
8d16d428e0
fix up some p2p validation conditions based on PR feedback
2020-02-10 21:35:39 -07:00
Danny Ryan
8a2a689c80
add clarifying note to signedaggregateandproof in vaidator guide and fix tocs
2020-02-10 19:36:08 -07:00
Danny Ryan
1ca4e3538c
prevent multiple beacon blocks from same proposer in a given slot
2020-02-10 19:28:37 -07:00
Danny Ryan
118a755bbb
create SignedAggregateAndProof to prevent DoS attacks
2020-02-10 19:18:14 -07:00
Danny Ryan
c1a51a9358
Add no repeat attestation condition for committee_index_beacon_attestation gossip channel
2020-02-10 18:53:26 -07:00
Danny Ryan
d5f1402d0d
Merge pull request #1604 from status-im/fewer-head-block-roots
...
drop `head_block_root` from BeaconBlocksByRange
2020-02-08 18:24:54 -06:00
Danny Ryan
331502919f
Merge pull request #1610 from ethereum/bls-nitpicks
...
Bls nitpicks
2020-02-08 18:15:15 -06:00
Danny Ryan
c2456a2785
Merge pull request #1584 from ethereum/pkg-the-pyspec
...
Package the pyspec
2020-02-08 18:14:26 -06:00
Danny Ryan
0a429a479b
'full_name' -> 'indentifier' for bls generators
2020-02-08 17:04:19 -07:00
Danny Ryan
19fb615276
Merge pull request #1611 from ralexstokes/typo-fix
...
[validator-guide] typo fix
2020-02-08 18:00:21 -06:00
protolambda
501bac8ece
update deposit tests cache to read eth2spec version correctly
2020-02-09 00:07:08 +01:00
protolambda
305a54847c
more explicit about version file location
2020-02-08 23:59:08 +01:00
Jacek Sieka
6188f350f6
it's just a number
2020-02-07 19:03:33 +01:00
Jacek Sieka
97d931b705
rephrase fork choice requirement
2020-02-07 19:03:09 +01:00
Alex Stokes
b398e42439
another typo in pubsub channel name
2020-02-06 16:41:53 -08:00
Alex Stokes
7aeeb372a7
[validator-guide] typo fix
2020-02-06 16:03:40 -08:00
Danny Ryan
b57b4f5e0d
move desription to human readable name
2020-02-06 13:02:16 -06:00
Chih Cheng Liang
f5723cdd93
fix confusing directory name
2020-02-06 12:53:07 -06:00
Danny Ryan
03f53e9928
Merge pull request #1607 from AgeManning/noise-specification
...
Add libp2p-noise specification
2020-02-06 12:05:49 -06:00
Danny Ryan
c258a6fe72
Merge pull request #1605 from mcdee/tidy
...
Remove extraneous word
2020-02-06 06:41:07 -07:00
protolambda
1a16e9a3ab
version eth2spec
2020-02-05 18:38:21 +01:00
Age Manning
9355a6ebca
Noise libp2p specification
2020-02-05 14:33:00 +11:00
Jim McDonald
74c75fd6f1
Remove extraneous word
2020-02-02 22:08:11 +00:00
protolambda
3184ade0f3
version stub
2020-02-01 11:22:01 +01:00
Jacek Sieka
c943b5832e
drop `head_block_root` from BeaconBlocksByRange
...
This change simplifies the protocol and removes a race condition between
block request and response. In the case of honest server, this helps
serve the canonical / fork-chosen chain better while dishonest or broken
servers still need to be handled the same way.
Might as well get started on versions and upgrade it to 2, since the
change is backwards incompatible.
2020-01-31 22:04:48 +01:00
protolambda
cd4e99f10e
Merge branch 'dev' into pkg-the-pyspec
2020-01-31 12:04:20 +01:00
protolambda
340549aed6
spec version -> spec fork
2020-01-31 11:52:30 +01:00
Danny Ryan
9467d492b1
Merge pull request #1603 from terencechain/patch-95
...
Fixed table for phase 1 fork doc
2020-01-29 15:25:37 -07:00
terence tsao
fe58c78da8
Fix table
2020-01-29 14:08:48 -08:00
Danny Ryan
7e2a2b2027
Merge pull request #1602 from hermanjunge/patch-1
...
Update validator.md
2020-01-29 10:37:51 -07:00
Herman Junge
51f2974678
Update validator.md
...
Minor edit
2020-01-29 13:51:38 +00:00
Danny Ryan
b7004a961c
Merge pull request #1560 from ethereum/vbuterin-patch-1
...
Remove shard block chunking
2020-01-28 17:37:27 -07:00
vbuterin
52fb929978
Update specs/core/1_beacon-chain.md
2020-01-28 17:32:57 -07:00
vbuterin
2a91b43eaf
Remove shard block chunking
...
Only store a 32 byte root for every shard block
Rationale: originally, I added shard block chunking (store 4 chunks for every shard block instead of one root) to facilitate construction of data availability roots. However, it turns out that there is an easier technique. Set the width of the data availability rectangle's rows to be 1/4 the max size of a shard block, so each block would fill multiple rows. Then, non-full blocks will generally create lots of zero rows. For example if the block bodies are `31415926535` and `897932` with a max size of 24 bytes, the rows might look like this:
```
31415926
53500000
00000000
89793200
00000000
00000000
```
Zero rows would extend rightward to complete zero rows, and when extending downward we can count the number of zero rows, and reduce the number of extra rows that we make, so we only make a new row for every nonzero row in the original data. This way we get only a close-to-optimal ~4-5x blowup in the data even if the data has zero rows in the middle.
2020-01-28 17:31:51 -07:00
Danny Ryan
7b76808a1c
Merge pull request #1600 from ethereum/master
...
Backport BLS test gen fix to dev
2020-01-27 19:07:12 -07:00
protolambda
e118045a59
update remerkleable dependency
2020-01-28 02:31:39 +01:00
Danny Ryan
3daca54a21
Merge pull request #1599 from ethereum/fix-fast-aggregate-bls-test
...
Fix fast_aggregate_verify BLS tests
2020-01-27 17:51:33 -07:00
Ben Edgington
b67aeee855
Fix fast_aggregate_verify BLS tests
2020-01-27 17:39:50 -07:00
protolambda
7848500ea9
spec packaging; implement review suggestions from hww
2020-01-25 22:10:03 +01:00
protolambda
675d404c38
Package eth2spec for tooling and experimentation
...
See tests/core/pyspec/README.md for usage description.
This commit:
- refactors config loading to be part of the pyspec package
- updates requirements and main files to use new config loading
- cleans up the build script
- converts the build script to a distutil command
- runs pyspec build as part of build package command
- provides pyspecdev command to get editable spec python files
2020-01-25 01:57:11 +01:00
Diederik Loerakker
247a4eeab1
Merge pull request #1552 from ethereum/tree-based-ssz
...
Tree based spec SSZ implementation - remerkleable
2020-01-25 01:00:58 +01:00
protolambda
d9f62f9303
Remerkleable - merkle tree based ssz for better and faster spec
2020-01-25 00:43:43 +01:00
Diederik Loerakker
8e5c1763ba
Merge pull request #1594 from ethereum/master-copy
...
Backport v0.10.1 to dev
2020-01-24 21:56:49 +01:00
Danny Ryan
67a4d5e659
Merge branch 'dev' into master-copy
2020-01-24 13:49:22 -07:00
Danny Ryan
b74dd67fcf
Merge pull request #1589 from ethereum/v010x
...
Release `v0.10.1` to `master`
2020-01-23 13:17:31 -07:00
Jim McDonald
d4ae00819a
Fix for increased seconds per slot
2020-01-23 13:08:52 -07:00
Danny Ryan
6a26b76858
Merge pull request #1504 from ethereum/phase1rebase
...
Phase 1 rebase
2020-01-23 12:09:17 -07:00
Danny Ryan
161c0a8bc1
remove unused code from bls generator file
2020-01-23 11:35:59 -07:00
protolambda
86b699bfd1
Merge branch 'dev' into phase1rebase
2020-01-23 19:24:03 +01:00
Diederik Loerakker
88026a8550
Merge pull request #1587 from ethereum/deposit-contract-test-pin
...
Deposit contract testing cleanup, manage python versions.
2020-01-23 19:11:09 +01:00