Remove pending deposits after receiving a processed block (#1530)

* Remove pending deposits after receiving a processed block

* Abstract createDeposit

* fix test

* Rename helper for clarity

* MaxDepositAmount
This commit is contained in:
Preston Van Loon 2019-02-09 09:07:30 -05:00 committed by GitHub
parent 932f9d07db
commit b0b55e8d1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 128 additions and 25 deletions

View File

@ -44,6 +44,7 @@ go_test(
"//shared/hashutil:go_default_library",
"//shared/params: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//common:go_default_library",
"@com_github_ethereum_go_ethereum//core/types:go_default_library",

View File

@ -307,6 +307,11 @@ func (c *ChainService) ReceiveBlock(block *pb.BeaconBlock, beaconState *pb.Beaco
if err := c.beaconDB.SaveBlock(block); err != nil {
return nil, fmt.Errorf("failed to save block: %v", err)
}
// Remove pending deposits from the deposit queue.
for _, dep := range block.Body.Deposits {
c.beaconDB.RemovePendingDeposit(c.ctx, dep)
}
log.WithField("hash", fmt.Sprintf("%#x", blockHash)).Debug("Processed beacon block")
return beaconState, nil
}

View File

@ -24,6 +24,7 @@ import (
"github.com/prysmaticlabs/prysm/shared/hashutil"
"github.com/prysmaticlabs/prysm/shared/params"
"github.com/prysmaticlabs/prysm/shared/testutil"
"github.com/prysmaticlabs/prysm/shared/trieutil"
"github.com/sirupsen/logrus"
logTest "github.com/sirupsen/logrus/hooks/test"
)
@ -107,19 +108,21 @@ func setupInitialDeposits(t *testing.T) []*pb.Deposit {
genesisValidatorRegistry := validators.InitialValidatorRegistry()
deposits := make([]*pb.Deposit, len(genesisValidatorRegistry))
for i := 0; i < len(deposits); i++ {
depositInput := &pb.DepositInput{
Pubkey: genesisValidatorRegistry[i].Pubkey,
}
balance := params.BeaconConfig().MaxDepositAmount
depositData, err := b.EncodeDepositData(depositInput, balance, time.Now().Unix())
if err != nil {
t.Fatalf("Cannot encode data: %v", err)
}
deposits[i] = &pb.Deposit{DepositData: depositData}
deposits[i] = createPreChainStartDeposit(t, genesisValidatorRegistry[i].Pubkey)
}
return deposits
}
func createPreChainStartDeposit(t *testing.T, pk []byte) *pb.Deposit {
depositInput := &pb.DepositInput{Pubkey: pk}
balance := params.BeaconConfig().MaxDepositAmount
depositData, err := b.EncodeDepositData(depositInput, balance, time.Now().Unix())
if err != nil {
t.Fatalf("Cannot encode data: %v", err)
}
return &pb.Deposit{DepositData: depositData}
}
func setupBeaconChain(t *testing.T, faultyPoWClient bool, beaconDB *db.BeaconDB, enablePOWChain bool) *ChainService {
endpoint := "ws://127.0.0.1"
ctx := context.Background()
@ -321,6 +324,25 @@ func TestRunningChainServiceFaultyPOWChain(t *testing.T) {
testutil.AssertLogsContain(t, hook, "unable to retrieve POW chain reference block failed")
}
func setupGenesisState(t *testing.T, cs *ChainService, beaconState *pb.BeaconState) ([32]byte, *pb.BeaconState) {
genesis := b.NewGenesisBlock([]byte{})
if err := cs.beaconDB.SaveBlock(genesis); err != nil {
t.Fatalf("could not save block to db: %v", err)
}
parentHash, err := hashutil.HashBeaconBlock(genesis)
if err != nil {
t.Fatalf("unable to get hash of canonical head: %v", err)
}
if err := cs.beaconDB.SaveState(beaconState); err != nil {
t.Fatalf("Can't save state to db %v", err)
}
beaconState, err = cs.beaconDB.State()
if err != nil {
t.Fatalf("Can't get state from db %v", err)
}
return parentHash, beaconState
}
func TestRunningChainService(t *testing.T) {
hook := logTest.NewGlobal()
db := internal.SetupDB(t)
@ -340,22 +362,7 @@ func TestRunningChainService(t *testing.T) {
enc, _ := proto.Marshal(beaconState)
stateRoot := hashutil.Hash(enc)
genesis := b.NewGenesisBlock([]byte{})
if err := chainService.beaconDB.SaveBlock(genesis); err != nil {
t.Fatalf("could not save block to db: %v", err)
}
parentHash, err := hashutil.HashBeaconBlock(genesis)
if err != nil {
t.Fatalf("unable to get hash of canonical head: %v", err)
}
if err := chainService.beaconDB.SaveState(beaconState); err != nil {
t.Fatalf("Can't save state to db %v", err)
}
beaconState, err = chainService.beaconDB.State()
if err != nil {
t.Fatalf("Can't get state from db %v", err)
}
parentHash, beaconState := setupGenesisState(t, chainService, beaconState)
validators := make([]*pb.Validator, params.BeaconConfig().DepositsForChainStart)
randaoCommit := hashutil.RepeatHash([32]byte{}, 1)
@ -417,6 +424,96 @@ func TestRunningChainService(t *testing.T) {
testutil.AssertLogsContain(t, hook, "Processed beacon block")
}
func TestReceiveBlock_RemovesPendingDeposits(t *testing.T) {
db := internal.SetupDB(t)
defer internal.TeardownDB(t, db)
chainService := setupBeaconChain(t, false, db, true)
unixTime := uint64(time.Now().Unix())
deposits := setupInitialDeposits(t)
if err := db.InitializeState(unixTime, deposits); err != nil {
t.Fatalf("Could not initialize beacon state to disk: %v", err)
}
beaconState, err := state.InitialBeaconState(deposits, 0, nil)
if err != nil {
t.Fatalf("Can't generate genesis state: %v", err)
}
beaconState.Slot = 5
enc, _ := proto.Marshal(beaconState)
stateRoot := hashutil.Hash(enc)
parentHash, beaconState := setupGenesisState(t, chainService, beaconState)
validators := make([]*pb.Validator, params.BeaconConfig().DepositsForChainStart)
randaoCommit := hashutil.RepeatHash([32]byte{}, 1)
for i := 0; i < len(validators); i++ {
validators[i] = &pb.Validator{
ExitEpoch: params.BeaconConfig().FarFutureEpoch,
RandaoCommitmentHash32: randaoCommit[:],
}
}
beaconState.ValidatorRegistry = validators
if err := chainService.beaconDB.SaveState(beaconState); err != nil {
t.Fatal(err)
}
currentSlot := uint64(5)
attestationSlot := uint64(0)
pendingDeposits := []*pb.Deposit{
createPreChainStartDeposit(t, []byte{'F'}),
}
depositTrie := trieutil.NewDepositTrie()
for _, pd := range pendingDeposits {
depositTrie.UpdateDepositTrie(pd.DepositData)
pd.MerkleBranchHash32S = depositTrie.Branch()
}
depositRoot := depositTrie.Root()
beaconState.LatestEth1Data.DepositRootHash32 = depositRoot[:]
block := &pb.BeaconBlock{
Slot: currentSlot + 1,
StateRootHash32: stateRoot[:],
ParentRootHash32: parentHash[:],
Eth1Data: &pb.Eth1Data{
DepositRootHash32: []byte("a"),
BlockHash32: []byte("b"),
},
Body: &pb.BeaconBlockBody{
Deposits: pendingDeposits,
Attestations: []*pb.Attestation{{
AggregationBitfield: []byte{128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
Data: &pb.AttestationData{
Slot: attestationSlot,
JustifiedBlockRootHash32: params.BeaconConfig().ZeroHash[:],
LatestCrosslinkRootHash32: params.BeaconConfig().ZeroHash[:],
},
}},
},
}
if err := SetSlotInState(chainService, currentSlot); err != nil {
t.Fatal(err)
}
for _, dep := range pendingDeposits {
db.InsertPendingDeposit(chainService.ctx, dep, big.NewInt(0))
}
if len(db.PendingDeposits(chainService.ctx, nil)) != len(pendingDeposits) || len(pendingDeposits) == 0 {
t.Fatalf("Expected %d pending deposits", len(pendingDeposits))
}
_, err = chainService.ReceiveBlock(block, beaconState)
if err != nil {
t.Fatal(err)
}
if len(db.PendingDeposits(chainService.ctx, nil)) != 0 {
t.Fatalf("Expected 0 pending deposits, but there are %+v", db.PendingDeposits(chainService.ctx, nil))
}
}
func TestDoesPOWBlockExist(t *testing.T) {
hook := logTest.NewGlobal()
db := internal.SetupDB(t)