aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorEmil <mursalimovemeel@gmail.com>2018-09-15 04:07:13 +0800
committerFelix Lange <fjl@users.noreply.github.com>2018-09-15 04:07:13 +0800
commit86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32 (patch)
tree92ee61a4d5a2c750b6abc257f30b040485e29842 /core
parent7bb95a9a64c9d26bef4f15fdd9301bb0b5cdb668 (diff)
downloadgo-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar.gz
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar.bz2
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar.lz
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar.xz
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.tar.zst
go-tangerine-86a03f97d30c11a5321fa2f0fd37cbc4c7f63a32.zip
all: simplify s[:] to s where s is a slice (#17673)
Diffstat (limited to 'core')
-rw-r--r--core/chain_indexer.go2
-rw-r--r--core/types/bloom9.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/core/chain_indexer.go b/core/chain_indexer.go
index 89ee75eb2..4bdd4ba1c 100644
--- a/core/chain_indexer.go
+++ b/core/chain_indexer.go
@@ -445,7 +445,7 @@ func (c *ChainIndexer) AddChildIndexer(indexer *ChainIndexer) {
func (c *ChainIndexer) loadValidSections() {
data, _ := c.indexDb.Get([]byte("count"))
if len(data) == 8 {
- c.storedSections = binary.BigEndian.Uint64(data[:])
+ c.storedSections = binary.BigEndian.Uint64(data)
}
}
diff --git a/core/types/bloom9.go b/core/types/bloom9.go
index a76b6f33c..d045c9e66 100644
--- a/core/types/bloom9.go
+++ b/core/types/bloom9.go
@@ -113,7 +113,7 @@ func LogsBloom(logs []*Log) *big.Int {
}
func bloom9(b []byte) *big.Int {
- b = crypto.Keccak256(b[:])
+ b = crypto.Keccak256(b)
r := new(big.Int)
@@ -130,7 +130,7 @@ var Bloom9 = bloom9
func BloomLookup(bin Bloom, topic bytesBacked) bool {
bloom := bin.Big()
- cmp := bloom9(topic.Bytes()[:])
+ cmp := bloom9(topic.Bytes())
return bloom.And(bloom, cmp).Cmp(cmp) == 0
}