aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/vote.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2019-02-22 17:01:42 +0800
committerGitHub <noreply@github.com>2019-02-22 17:01:42 +0800
commit929d41761b72abab106b5a4d627701d1c232e891 (patch)
tree2683f07d02b1d72231810ec12963b51c562165a2 /core/types/vote.go
parent8ef4fc213703620fbfa13890dee042d40eea8545 (diff)
downloaddexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.gz
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.bz2
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.lz
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.xz
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.zst
dexon-consensus-929d41761b72abab106b5a4d627701d1c232e891.zip
core: remove acks (#451)
Diffstat (limited to 'core/types/vote.go')
-rw-r--r--core/types/vote.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/types/vote.go b/core/types/vote.go
index 6481eb4..c4a625e 100644
--- a/core/types/vote.go
+++ b/core/types/vote.go
@@ -66,7 +66,7 @@ type Vote struct {
}
func (v *Vote) String() string {
- return fmt.Sprintf("Vote{BP:%s %s Period:%d Type:%d Hash:%s}",
+ return fmt.Sprintf("Vote{VP:%s %s Period:%d Type:%d Hash:%s}",
v.ProposerID.String()[:6],
v.Position, v.Period, v.Type, v.BlockHash.String()[:6])
}