diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-20 07:33:52 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-20 18:41:41 +0800 |
commit | d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc (patch) | |
tree | 351e6660b9d70a2badb4a010eccf76357ecf6dd7 /blockpool/section.go | |
parent | 8987750a369e4906f8d5301473cd4df8433177f3 (diff) | |
download | go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar.gz go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar.bz2 go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar.lz go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar.xz go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.tar.zst go-tangerine-d7564a9a25c06f0c9ad9440f02b09e20e0ca30bc.zip |
fix common.Hash conversion
Diffstat (limited to 'blockpool/section.go')
-rw-r--r-- | blockpool/section.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blockpool/section.go b/blockpool/section.go index 0304c9a04..18a27377d 100644 --- a/blockpool/section.go +++ b/blockpool/section.go @@ -117,7 +117,7 @@ func (self *section) addSectionToBlockChain(p *peer) { break } self.poolRootIndex-- - keys = append(keys, node.hash.Str()) + keys = append(keys, n.hash.Str()) blocks = append(blocks, block) nodes = append(nodes, n) } |