Mutan compile

This commit is contained in:
obscuren 2014-08-17 12:42:02 +02:00
parent d79387c27e
commit 4008ff32c9
1 changed files with 9 additions and 0 deletions

View File

@ -148,3 +148,12 @@ func (self *Pipe) Transact(key *ethcrypto.KeyPair, rec []byte, value, gas, price
return tx.Hash(), nil
}
func (self *Pipe) CompileMutan(code string) ([]byte, error) {
data, err := ethutil.Compile(code, false)
if err != nil {
return nil, err
}
return data, nil
}