From 54875f5389317cc6cdc036c493720c5f7cfee6a9 Mon Sep 17 00:00:00 2001 From: Raul Jordan Date: Wed, 16 May 2018 01:13:06 -0400 Subject: [PATCH] sharding: fix typo in collation.go Former-commit-id: 223f5fa3ac324327f105dff1f2912a5392980af1 [formerly ff32f9f6ff29e64467786dec0825fbc74835e319] Former-commit-id: 8b36f30091c9314592cf85899caa3fa095ab112a --- sharding/collation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharding/collation.go b/sharding/collation.go index 373a6ba9c..245b1e8e0 100644 --- a/sharding/collation.go +++ b/sharding/collation.go @@ -33,7 +33,7 @@ type CollationHeader struct { type collationHeaderData struct { ShardID *big.Int // the shard ID of the shard. ChunkRoot *common.Hash // the root of the chunk tree which identifies collation body. - Period *big.Int // the period number in which collation to be Pncluded. + Period *big.Int // the period number in which collation to be included. ProposerAddress *common.Address // address of the collation proposer. ProposerSignature []byte // the proposer's signature for calculating collation hash. }