diff options
author | Casey Kuhlman <caseykuhlman@watershedlegal.com> | 2014-04-28 17:37:44 +0800 |
---|---|---|
committer | Casey Kuhlman <caseykuhlman@watershedlegal.com> | 2014-04-28 17:40:05 +0800 |
commit | a0f35d324822fc66951f8a33526ff3d15b0de09d (patch) | |
tree | 217324fd2903e21cb623e05a839db47a68d55086 /ethereal | |
parent | 68e5568804cc99d217e7a3aaca796406e428f221 (diff) | |
download | go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar.gz go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar.bz2 go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar.lz go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar.xz go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.tar.zst go-tangerine-a0f35d324822fc66951f8a33526ff3d15b0de09d.zip |
PreProcess moved to Mutan package
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/ui/ui_lib.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ethereal/ui/ui_lib.go b/ethereal/ui/ui_lib.go index 309ab7928..a9bde74b0 100644 --- a/ethereal/ui/ui_lib.go +++ b/ethereal/ui/ui_lib.go @@ -6,6 +6,7 @@ import ( "github.com/ethereum/eth-go" "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethutil" + "github.com/obscuren/mutan" "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" "os" @@ -172,7 +173,7 @@ func DefaultAssetPath() string { func (ui *UiLib) DebugTx(recipient, valueStr, gasStr, gasPriceStr, data string) { state := ui.eth.BlockChain().CurrentBlock.State() - mainInput, _ := ethutil.PreProcess(data) + mainInput, _ := mutan.PreProcess(data) callerScript, err := utils.Compile(mainInput) if err != nil { ethutil.Config.Log.Debugln(err) |