Compare commits

...

1 Commits

Author SHA1 Message Date
Preston Van Loon
a8354db435 Update runner.go 2022-07-19 09:38:55 -05:00

View File

@@ -56,7 +56,7 @@ func run(ctx context.Context, v iface.Validator) {
sub := km.SubscribeAccountChanges(accountsChangedChan)
// Set properties on the beacon node like the fee recipient for validators that are being used & active.
if err := v.PushProposerSettings(ctx, km); err != nil {
log.Fatalf("Failed to update proposer settings: %v", err) // allow fatal. skipcq
log.Errorf("Failed to update proposer settings: %v", err)
}
for {
_, cancel := context.WithCancel(ctx)