Skip to content

Commit

Permalink
fix non existent validators (#7114)
Browse files Browse the repository at this point in the history
  • Loading branch information
nisdas authored Aug 26, 2020
1 parent 73cb6da commit e95393f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/interop-cold-start/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (s *Service) ClearPreGenesisData() {

// DepositByPubkey mocks out the deposit cache functionality for interop.
func (s *Service) DepositByPubkey(ctx context.Context, pubKey []byte) (*ethpb.Deposit, *big.Int) {
return &ethpb.Deposit{}, big.NewInt(1)
return &ethpb.Deposit{}, nil
}

// DepositsNumberAndRootAtHeight mocks out the deposit cache functionality for interop.
Expand Down

0 comments on commit e95393f

Please sign in to comment.