diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-29 05:24:42 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-29 05:24:42 +0800 |
commit | 922974c760278b6d49cb6f286b663d60f77d5248 (patch) | |
tree | 58b04982be7dfd134103e350da7cc8b0a8fbd2eb /ethereum | |
parent | c0de11955b3a15e6122e3ec9b68623515d311962 (diff) | |
download | go-tangerine-922974c760278b6d49cb6f286b663d60f77d5248.tar.gz go-tangerine-922974c760278b6d49cb6f286b663d60f77d5248.tar.zst go-tangerine-922974c760278b6d49cb6f286b663d60f77d5248.zip |
Added muted
Diffstat (limited to 'ethereum')
-rw-r--r-- | ethereum/dev_console.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ethereum/dev_console.go b/ethereum/dev_console.go index 583b8bd0b..d2be43205 100644 --- a/ethereum/dev_console.go +++ b/ethereum/dev_console.go @@ -12,6 +12,7 @@ import ( "github.com/ethereum/eth-go/ethutil" "github.com/ethereum/eth-go/ethwire" "github.com/ethereum/go-ethereum/utils" + "github.com/obscuren/mutan" "os" "strings" ) @@ -190,7 +191,7 @@ func (i *Console) ParseInput(input string) bool { case "contract": fmt.Println("Contract editor (Ctrl-D = done)") - mainInput, initInput := ethutil.PreProcess(i.Editor()) + mainInput, initInput := mutan.PreProcess(i.Editor()) mainScript, err := utils.Compile(mainInput) if err != nil { fmt.Println(err) |