aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/dagger.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-10-08 18:06:39 +0800
committerobscuren <geffobscura@gmail.com>2014-10-08 18:06:39 +0800
commit9d86a49a7327199c01977f3372c8adf748252c32 (patch)
treea07141b5910df83e6284713149f9173c31ce247b /ethchain/dagger.go
parentf3196c915a6f8ddde1d2e178ad419a114b608b91 (diff)
downloadgo-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar.gz
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar.bz2
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar.lz
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar.xz
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.tar.zst
go-tangerine-9d86a49a7327199c01977f3372c8adf748252c32.zip
Renamed Sha3Bin to Sha3
Diffstat (limited to 'ethchain/dagger.go')
-rw-r--r--ethchain/dagger.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/dagger.go b/ethchain/dagger.go
index 478b7e877..916d7e9c8 100644
--- a/ethchain/dagger.go
+++ b/ethchain/dagger.go
@@ -61,7 +61,7 @@ func (pow *EasyPow) Search(block *Block, reactChan chan ethreact.Event) []byte {
t = time.Now()
}
- sha := ethcrypto.Sha3Bin(big.NewInt(r.Int63()).Bytes())
+ sha := ethcrypto.Sha3(big.NewInt(r.Int63()).Bytes())
if pow.Verify(hash, diff, sha) {
return sha
}