aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/state_test.go
diff options
context:
space:
mode:
authorkiel barry <kiel.j.barry@gmail.com>2018-05-29 18:42:21 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-05-29 18:42:21 +0800
commit84f8c0cc1fbe1ab9c128555392a82ba609820fef (patch)
tree4859fe37105cc88d4d338a9f5bc55e42a017a29f /core/state/state_test.go
parent998f6564b28ea9241d0052c2abee090d2b9a8b63 (diff)
downloadgo-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar.gz
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar.bz2
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar.lz
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar.xz
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.tar.zst
go-tangerine-84f8c0cc1fbe1ab9c128555392a82ba609820fef.zip
common: improve documentation comments (#16701)
This commit adds many comments and removes unused code. It also removes the EmptyHash function, which had some uses but was silly.
Diffstat (limited to 'core/state/state_test.go')
-rw-r--r--core/state/state_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/state_test.go b/core/state/state_test.go
index 12778f6f1..123559ea9 100644
--- a/core/state/state_test.go
+++ b/core/state/state_test.go
@@ -99,7 +99,7 @@ func (s *StateSuite) TestNull(c *checker.C) {
s.state.SetState(address, common.Hash{}, value)
s.state.Commit(false)
value = s.state.GetState(address, common.Hash{})
- if !common.EmptyHash(value) {
+ if value != (common.Hash{}) {
c.Errorf("expected empty hash. got %x", value)
}
}