diff --git a/sharding/notary/notary.go b/sharding/notary/notary.go index bd7ca3fc5..52062fe82 100644 --- a/sharding/notary/notary.go +++ b/sharding/notary/notary.go @@ -72,9 +72,9 @@ func checkSMCForNotary(c client.Client, head *types.Header) error { return err } - // If the account is selected as collator, submit collation. + // If the account is selected as notary, submit collation. if addr == c.Account().Address { - log.Info(fmt.Sprintf("Selected as collator on shard: %d", s)) + log.Info(fmt.Sprintf("Selected as notary on shard: %d", s)) err := submitCollation(s) if err != nil { return fmt.Errorf("could not add collation. %v", err)