remove logging exits (#1791)

This commit is contained in:
terence tsao 2019-03-02 18:22:35 -08:00 committed by Preston Van Loon
parent 394dae6076
commit 6a1addbd1a

View File

@ -145,9 +145,6 @@ func ProcessBlock(state *pb.BeaconState, block *pb.BeaconBlock, verifySignatures
log.WithField(
"depositsInBlock", len(block.Body.Deposits),
).Info("Block deposits")
log.WithField(
"exitsInBlock", len(block.Body.VoluntaryExits),
).Info("Block voluntary exits")
return state, nil
}