aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-29 08:05:57 +0800
committerobscuren <geffobscura@gmail.com>2014-05-29 08:05:57 +0800
commita2d01d6af8cace4ea0ef87662727659eaa1ff791 (patch)
tree0f74c9e6bd7fe22d5c9de9b96a0a5ff68550bc26
parent4d987624867fc02a079d8355c28bad620db85f06 (diff)
downloadgo-tangerine-a2d01d6af8cace4ea0ef87662727659eaa1ff791.tar.gz
go-tangerine-a2d01d6af8cace4ea0ef87662727659eaa1ff791.tar.zst
go-tangerine-a2d01d6af8cace4ea0ef87662727659eaa1ff791.zip
Removed comments
-rw-r--r--ethpub/pub.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/ethpub/pub.go b/ethpub/pub.go
index 5a9401d0d..6dd7798ae 100644
--- a/ethpub/pub.go
+++ b/ethpub/pub.go
@@ -122,29 +122,6 @@ func (lib *PEthereum) createTx(key, recipient, valueStr, gasStr, gasPriceStr, sc
var tx *ethchain.Transaction
// Compile and assemble the given data
if contractCreation {
- /*
- var initScript, mainScript []byte
- var err error
- if ethutil.IsHex(initStr) {
- initScript = ethutil.FromHex(initStr[2:])
- } else {
- initScript, err = ethutil.Compile(initStr)
- if err != nil {
- return nil, err
- }
- }
-
- if ethutil.IsHex(scriptStr) {
- mainScript = ethutil.FromHex(scriptStr[2:])
- } else {
- mainScript, err = ethutil.Compile(scriptStr)
- if err != nil {
- return nil, err
- }
- }
-
- script := ethchain.AppendScript(initScript, mainScript)
- */
var script []byte
var err error
if ethutil.IsHex(scriptStr) {