diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-09-19 18:48:41 +0800 |
---|---|---|
committer | missionliao <38416648+missionliao@users.noreply.github.com> | 2018-09-19 18:48:41 +0800 |
commit | 22e70f6da486ed6796a493f25e04679b9afa1439 (patch) | |
tree | 41998daa892812957daa58d7fe84d6fd06f4327c /core/consensus-timestamp_test.go | |
parent | a2a733e6f98018cb2ecc4b3982386be8892d7433 (diff) | |
download | tangerine-consensus-22e70f6da486ed6796a493f25e04679b9afa1439.tar.gz tangerine-consensus-22e70f6da486ed6796a493f25e04679b9afa1439.tar.zst tangerine-consensus-22e70f6da486ed6796a493f25e04679b9afa1439.zip |
core: rename Notary (Acks) to Witness (#118)
Diffstat (limited to 'core/consensus-timestamp_test.go')
-rw-r--r-- | core/consensus-timestamp_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/consensus-timestamp_test.go b/core/consensus-timestamp_test.go index 56dd306..a5f9fb7 100644 --- a/core/consensus-timestamp_test.go +++ b/core/consensus-timestamp_test.go @@ -82,7 +82,7 @@ func (s *ConsensusTimestampTest) extractTimestamps( if block.IsGenesis() { continue } - timestamps = append(timestamps, block.Notary.Timestamp) + timestamps = append(timestamps, block.Witness.Timestamp) } return timestamps } |