Removed debug print

This commit is contained in:
obscuren 2014-02-24 12:44:18 +01:00
parent d69db6e617
commit b29c1eecd1
1 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,6 @@ out:
tf := new(big.Int).Add(fee, fee2) tf := new(big.Int).Add(fee, fee2)
if contract.Amount.Cmp(tf) < 0 { if contract.Amount.Cmp(tf) < 0 {
fmt.Println("Contract fee", ContractFee)
fmt.Println("Insufficient fees to continue running the contract", tf, contract.Amount) fmt.Println("Insufficient fees to continue running the contract", tf, contract.Amount)
break break
} }
@ -392,7 +391,7 @@ out:
fmt.Printf("Invalid OPCODE: %x\n", op) fmt.Printf("Invalid OPCODE: %x\n", op)
} }
fmt.Println("") fmt.Println("")
vm.stack.Print() //vm.stack.Print()
pc++ pc++
} }