aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorbojie <bojie@dexon.org>2019-01-20 16:45:12 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:21 +0800
commit6fb09ec7a79d8f9dab7d83f3af2cfba5033b57b8 (patch)
tree978740c96873f03d225c4b29c463766bed14d10c /core
parente7c5d76ec002c7c2ca6578c24fa69c37e2ad7441 (diff)
downloadgo-tangerine-6fb09ec7a79d8f9dab7d83f3af2cfba5033b57b8.tar.gz
go-tangerine-6fb09ec7a79d8f9dab7d83f3af2cfba5033b57b8.tar.zst
go-tangerine-6fb09ec7a79d8f9dab7d83f3af2cfba5033b57b8.zip
travis: re-encrypt GCP credential file (#165)
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index ea1d06489..8bbf6e809 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1891,7 +1891,7 @@ func (bc *BlockChain) processBlock(
chainBlock := bc.GetBlockByNumber(newBlock.NumberU64())
if chainBlock != nil {
if chainBlock.Hash() != newBlock.Hash() {
- return nil, nil, nil, fmt.Errorf("block %v exist but hash is not equal: exist %v expect %v", newBlock.NumberU64(),
+ return nil, nil, nil, fmt.Errorf("block %v exist but hash is not equal: exist %v but get %v", newBlock.NumberU64(),
chainBlock.Hash(), newBlock.Hash())
}