aboutsummaryrefslogtreecommitdiffstats
path: root/ethpub
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-04 21:32:10 +0800
committerobscuren <geffobscura@gmail.com>2014-07-04 21:32:10 +0800
commit90eb4f1939f7b0389d5784b889cc0e5d2b3451f7 (patch)
treec812cf882cb5a22ea7ffd4a061be2ac286dcfa58 /ethpub
parent23b5b5fa36530eb82543d7d877f8e9e1900232cf (diff)
downloadgo-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.gz
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.bz2
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.lz
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.xz
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.zst
go-tangerine-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.zip
Debug output, minor fixes and tweaks
* Script compile length fix * Transition fix
Diffstat (limited to 'ethpub')
-rw-r--r--ethpub/pub.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethpub/pub.go b/ethpub/pub.go
index 4845b1d13..f409d136b 100644
--- a/ethpub/pub.go
+++ b/ethpub/pub.go
@@ -217,7 +217,7 @@ func (lib *PEthereum) createTx(key, recipient, valueStr, gasStr, gasPriceStr, sc
if ethutil.IsHex(scriptStr) {
script = ethutil.Hex2Bytes(scriptStr[2:])
} else {
- script, err = ethutil.Compile(scriptStr)
+ script, err = ethutil.Compile(scriptStr, false)
if err != nil {
return nil, err
}