Trivial fix to the warning message about fee recipient config (#11027)

Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
This commit is contained in:
AH 2022-07-11 20:11:26 -07:00 committed by GitHub
parent 5d06c14cec
commit 3060096233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -953,7 +953,7 @@ func (v *validator) PushProposerSettings(ctx context.Context, km keymanager.IKey
} else {
log.Warn("In order to receive transaction fees from proposing blocks, " +
"you must now specify a configuration known as a fee recipient config. " +
"If it not provided, transaction fees will be burnt. Please see our documentation for more information on this requirement (https://docs.prylabs.network/docs/execution-node/fee-recipient).")
"If it is not provided, transaction fees will be burnt. Please see our documentation for more information on this requirement (https://docs.prylabs.network/docs/execution-node/fee-recipient).")
}
return nil
}