From 16c5158cb913223848c11b9278e7205a07c9b1c9 Mon Sep 17 00:00:00 2001 From: Terence Tsao Date: Sun, 13 May 2018 15:49:06 -0700 Subject: [PATCH] sharding/contracts: collator -> notary Former-commit-id: baa704eda89c6f51e8a8419550bd1f40ef378625 [formerly 277726a6ee2d899ae2f9cc428213205531356d0a] Former-commit-id: 8ef9b8fe4bdbf4e0f7591c458b4cb7f37b81db61 --- sharding/notary/notary.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)