From 53a30740eea7d3b3010337166e53a62ebff508f3 Mon Sep 17 00:00:00 2001 From: obscuren Date: Sun, 5 Jan 2014 01:54:15 +0100 Subject: Contract checking method --- block_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block_manager.go b/block_manager.go index 6c1a0fe58..0f7a64cf8 100644 --- a/block_manager.go +++ b/block_manager.go @@ -34,7 +34,7 @@ func (bm *BlockManager) ProcessBlock(block *Block) error { // Process each transaction/contract for _, tx := range block.transactions { // If there's no recipient, it's a contract - if tx.recipient == "" { + if tx.IsContract() { go bm.ProcessContract(tx, block, lockChan) } else { // "finish" tx which isn't a contract -- cgit