removed debugging code
authorForrest Voight <forrest@forre.st>
Mon, 28 Nov 2011 23:50:40 +0000 (18:50 -0500)
committerForrest Voight <forrest@forre.st>
Mon, 28 Nov 2011 23:50:40 +0000 (18:50 -0500)
p2pool/data.py

index 8ba2a3c..6993d55 100644 (file)
@@ -468,11 +468,6 @@ def new_generate_transaction(tracker, new_share_data, block_target, net):
     if sum(amounts.itervalues()) != subsidy:
         raise ValueError()
     if any(x < 0 for x in amounts.itervalues()):
-        print amounts
-        import code
-        d = globals()
-        d.update(locals())
-        code.interact(local=d)
         raise ValueError()
     
     pre_dests = sorted(amounts.iterkeys(), key=lambda script: (amounts[script], script))