diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-24 19:44:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-24 19:44:18 +0800 |
commit | b29c1eecd104de58611b9a17a68b48321fd40e87 (patch) | |
tree | d59b94d4f26b90b9bd1e00cc27ea3a2c50056ef5 /ethchain | |
parent | d69db6e617478911e90f6627329012578bfd0fe5 (diff) | |
download | go-tangerine-b29c1eecd104de58611b9a17a68b48321fd40e87.tar.gz go-tangerine-b29c1eecd104de58611b9a17a68b48321fd40e87.tar.zst go-tangerine-b29c1eecd104de58611b9a17a68b48321fd40e87.zip |
Removed debug print
Diffstat (limited to 'ethchain')
-rw-r--r-- | ethchain/vm.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ethchain/vm.go b/ethchain/vm.go index d5f4d7ad6..9abd9cd41 100644 --- a/ethchain/vm.go +++ b/ethchain/vm.go @@ -91,7 +91,6 @@ out: tf := new(big.Int).Add(fee, fee2) if contract.Amount.Cmp(tf) < 0 { - fmt.Println("Contract fee", ContractFee) fmt.Println("Insufficient fees to continue running the contract", tf, contract.Amount) break } @@ -392,7 +391,7 @@ out: fmt.Printf("Invalid OPCODE: %x\n", op) } fmt.Println("") - vm.stack.Print() + //vm.stack.Print() pc++ } |