aboutsummaryrefslogtreecommitdiffstats
path: root/core/db
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/db
parent8ef4fc213703620fbfa13890dee042d40eea8545 (diff)
downloadtangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.gz
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.bz2
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.lz
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.xz
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.tar.zst
tangerine-consensus-929d41761b72abab106b5a4d627701d1c232e891.zip
core: remove acks (#451)
Diffstat (limited to 'core/db')
-rw-r--r--core/db/memory_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/db/memory_test.go b/core/db/memory_test.go
index b210c8d..b0bfb16 100644
--- a/core/db/memory_test.go
+++ b/core/db/memory_test.go
@@ -46,7 +46,6 @@ func (s *MemBackedDBTestSuite) SetupSuite() {
Position: types.Position{
Height: 0,
},
- Acks: common.NewSortedHashes(common.Hashes{}),
}
s.b01 = &types.Block{
ProposerID: s.v0,
@@ -55,7 +54,6 @@ func (s *MemBackedDBTestSuite) SetupSuite() {
Position: types.Position{
Height: 1,
},
- Acks: common.NewSortedHashes(common.Hashes{s.b00.Hash}),
}
s.b02 = &types.Block{
ProposerID: s.v0,
@@ -64,7 +62,6 @@ func (s *MemBackedDBTestSuite) SetupSuite() {
Position: types.Position{
Height: 2,
},
- Acks: common.NewSortedHashes(common.Hashes{s.b01.Hash}),
}
}