diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-04 21:32:10 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-04 21:32:10 +0800 |
commit | 90eb4f1939f7b0389d5784b889cc0e5d2b3451f7 (patch) | |
tree | c812cf882cb5a22ea7ffd4a061be2ac286dcfa58 /ethpub | |
parent | 23b5b5fa36530eb82543d7d877f8e9e1900232cf (diff) | |
download | dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.gz dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.bz2 dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.lz dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.xz dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.tar.zst dexon-90eb4f1939f7b0389d5784b889cc0e5d2b3451f7.zip |
Debug output, minor fixes and tweaks
* Script compile length fix
* Transition fix
Diffstat (limited to 'ethpub')
-rw-r--r-- | ethpub/pub.go | 2 |
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 } |