Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Track Previously Seen Merkle Index to Prevent Duplicate Log Spam #1566

Merged
merged 40 commits into from
Feb 12, 2019
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
86fcda2
using little endian and tests for encoding dep inputs
Feb 8, 2019
c74307c
use decode value and timestamp method in state
Feb 8, 2019
19f3686
updated comments to match serialization format
Feb 8, 2019
1927a41
latest compiled contract, abi, bytecode, and bindings
Feb 10, 2019
4a74367
resolve some conflicts
Feb 10, 2019
92410cb
to little endian everywhere
Feb 10, 2019
f60565b
fix all tests except for contract tests
Feb 10, 2019
156705c
Merge branch 'new-contract' into fix-encoding-decoding
Feb 10, 2019
df64ad9
include contract changes
Feb 10, 2019
5d81cba
Merge branch 'master' into fix-encoding-decoding
rauljordan Feb 10, 2019
21a3a9d
Merge branch 'master' into fix-encoding-decoding
terencechain Feb 10, 2019
dee0a28
address broken build
Feb 10, 2019
cbc8066
Merge branch 'master' into fix-encoding-decoding
rauljordan Feb 11, 2019
da6a588
compile with vyper v8
Feb 11, 2019
5522e79
update readme
Feb 11, 2019
b35fddf
merge master
Feb 11, 2019
2949353
Merge branch 'master' into fix-encoding-decoding
rauljordan Feb 11, 2019
f319e02
fix pkg name
Feb 11, 2019
0f9f0e2
add skip chainstart delay
Feb 11, 2019
b0cf284
skip chainstart delay tests pass
Feb 11, 2019
07af614
Merge branch 'master' into fix-encoding-decoding
rauljordan Feb 11, 2019
95513e5
to little endian timestamp
Feb 11, 2019
7848df0
Merge branch 'fix-encoding-decoding' of github.com:prysmaticlabs/prys…
Feb 11, 2019
eae8948
pull origin
Feb 11, 2019
416c1de
using genesis timestamp instead of bool
Feb 11, 2019
bb7f5cd
update with gofmt
Feb 11, 2019
c61424a
Merge branch 'master' into no-merkle-prestart
rauljordan Feb 12, 2019
b036fca
make more fields public
Feb 12, 2019
6250120
resolve with master
Feb 12, 2019
9e2a1ad
Merge branch 'no-merkle-prestart' into track-prev-index
Feb 12, 2019
b014659
duplicate log spam inconsistent root fixed by tracking last seen index
Feb 12, 2019
93519db
resolve confs with master
Feb 12, 2019
6686957
sync with master
Feb 12, 2019
c0d6569
readd weird removal of import
Feb 12, 2019
bf5d95b
readd libp2p import
Feb 12, 2019
4cbe966
gazelle
Feb 12, 2019
1646ae7
readd eth
Feb 12, 2019
574e8bb
Merge branch 'master' into track-prev-index
rauljordan Feb 12, 2019
6852d47
comments
Feb 12, 2019
664a926
Merge branch 'track-prev-index' of github.com:prysmaticlabs/prysm int…
Feb 12, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
readd eth
rauljordan committed Feb 12, 2019

Verified

This commit was signed with the committer’s verified signature.
timryanb Tim Brooks
commit 1646ae7c9b9906349fbd3bc929dadd383c64f8d1
2 changes: 2 additions & 0 deletions beacon-chain/powchain/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -13,6 +13,7 @@ go_library(
"//shared/event:go_default_library",
"//shared/hashutil:go_default_library",
"//shared/trieutil:go_default_library",
"@com_github_ethereum_go_ethereum//:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
@@ -35,6 +36,7 @@ go_test(
"//shared/ssz:go_default_library",
"//shared/testutil:go_default_library",
"//shared/trieutil:go_default_library",
"@com_github_ethereum_go_ethereum//:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
"@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
"@com_github_ethereum_go_ethereum//common:go_default_library",
1 change: 1 addition & 0 deletions beacon-chain/powchain/service.go
Original file line number Diff line number Diff line change
@@ -11,6 +11,7 @@ import (
"strings"
"time"

ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
gethTypes "github.com/ethereum/go-ethereum/core/types"
1 change: 1 addition & 0 deletions beacon-chain/powchain/service_test.go
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ import (
"testing"
"time"

ethereum "github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/accounts/abi/bind/backends"
"github.com/ethereum/go-ethereum/common"