From 1e7b3cbb1343d5362b8ed55d06b1927171f56a41 Mon Sep 17 00:00:00 2001
From: obscuren <geffobscura@gmail.com>
Date: Tue, 25 Feb 2014 11:22:05 +0100
Subject: [PATCH] Removed debug log

---
 ethchain/contract.go | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/ethchain/contract.go b/ethchain/contract.go
index 14abb05d1..dbcbb3697 100644
--- a/ethchain/contract.go
+++ b/ethchain/contract.go
@@ -1,7 +1,6 @@
 package ethchain
 
 import (
-	"fmt"
 	"github.com/ethereum/eth-go/ethutil"
 	"math/big"
 )
@@ -66,8 +65,6 @@ func MakeContract(tx *Transaction, state *State) *Contract {
 		state.trie.Update(string(addr), string(contract.RlpEncode()))
 
 		return contract
-	} else {
-		fmt.Println("NO CONTRACT")
 	}
 
 	return nil
-- 
GitLab