Skip to content

Commit

Permalink
Use debug for Skipping deposit... log (#5444)
Browse files Browse the repository at this point in the history
* Use debug
* Merge branch 'master' into debug-deposit-logs
* Merge refs/heads/master into debug-deposit-logs
  • Loading branch information
terencechain committed Apr 15, 2020
1 parent 144f37e commit ea84f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon-chain/core/blocks/block_operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ func ProcessDeposit(
depositSig := deposit.Data.Signature
if err := verifyDepositDataSigningRoot(deposit.Data, pubKey, depositSig, domain); err != nil {
// Ignore this error as in the spec pseudo code.
log.Errorf("Skipping deposit: could not verify deposit data signature: %v", err)
log.Debugf("Skipping deposit: could not verify deposit data signature: %v", err)
return beaconState, nil
}

Expand Down

0 comments on commit ea84f44

Please sign in to comment.