aboutsummaryrefslogtreecommitdiffstats
path: root/chain
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-04 08:33:31 +0800
committerobscuren <geffobscura@gmail.com>2014-11-04 08:33:31 +0800
commitf76f953f0cad3b55d6817ce766def50a587f1d19 (patch)
tree88f8d770ed0c4368f79390c128848c439e2c467b /chain
parent9c2b8786784109a0d3fd902cfe351f4616c2491c (diff)
downloadgo-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.gz
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.bz2
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.lz
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.xz
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.tar.zst
go-tangerine-f76f953f0cad3b55d6817ce766def50a587f1d19.zip
Removed debug print
Diffstat (limited to 'chain')
-rw-r--r--chain/state_manager.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/chain/state_manager.go b/chain/state_manager.go
index f624f0097..31b77c574 100644
--- a/chain/state_manager.go
+++ b/chain/state_manager.go
@@ -254,6 +254,8 @@ func (sm *StateManager) Process(block *Block) (err error) {
return fmt.Errorf("Error validating receipt sha. Received %x, got %x", block.ReceiptSha, receiptSha)
}
+ // TODO validate bloom
+
// Block validation
if err = sm.ValidateBlock(block); err != nil {
statelogger.Errorln("Error validating block:", err)