diff --git a/ethpub/pub.go b/ethpub/pub.go
index 1866d6fdfaf1074549845f56b721db3c96636a58..4d153636890bbd1e4ef75d4b89db0052db2a5166 100644
--- a/ethpub/pub.go
+++ b/ethpub/pub.go
@@ -2,7 +2,6 @@ package ethpub
 
 import (
 	"encoding/hex"
-	"fmt"
 	"github.com/ethereum/eth-go/ethchain"
 	"github.com/ethereum/eth-go/ethutil"
 )
@@ -83,7 +82,6 @@ func (lib *PEthereum) GetStorage(address, storageAddress string) string {
 }
 
 func (lib *PEthereum) GetTxCountAt(address string) int {
-	fmt.Println("GO")
 	return lib.GetStateObject(address).Nonce()
 }