aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/dexon-foundation
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-04-24 15:26:36 +0800
committerGitHub <noreply@github.com>2019-04-24 15:26:36 +0800
commite4485257292734e22b3844089a3e03393f9eec7f (patch)
tree2fcb06e503be9df335ac2937dfff1732ea31785b /vendor/github.com/dexon-foundation
parentf42917678ec3161e58fc9c5a292dbe1b1094d178 (diff)
downloaddexon-e4485257292734e22b3844089a3e03393f9eec7f.tar.gz
dexon-e4485257292734e22b3844089a3e03393f9eec7f.tar.zst
dexon-e4485257292734e22b3844089a3e03393f9eec7f.zip
vendor: sync to latest core (#392)
Diffstat (limited to 'vendor/github.com/dexon-foundation')
-rw-r--r--vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go b/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go
index 3443c9676..a1def58e0 100644
--- a/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go
+++ b/vendor/github.com/dexon-foundation/dexon-consensus/core/consensus.go
@@ -224,7 +224,7 @@ func (recv *consensusBAReceiver) ConfirmBlock(
var exist bool
block, exist = recv.agreementModule.findBlockNoLock(hash)
if !exist {
- recv.consensus.logger.Error("Unknown block confirmed",
+ recv.consensus.logger.Debug("Unknown block confirmed",
"hash", hash.String()[:6])
ch := make(chan *types.Block)
func() {
@@ -245,7 +245,7 @@ func (recv *consensusBAReceiver) ConfirmBlock(
case <-time.After(1 * time.Second):
}
}
- recv.consensus.logger.Info("Receive unknown block",
+ recv.consensus.logger.Debug("Receive unknown block",
"hash", hash.String()[:6],
"position", block.Position)
recv.agreementModule.addCandidateBlock(block)