Mutan compile
This commit is contained in:
parent
d79387c27e
commit
4008ff32c9
@ -148,3 +148,12 @@ func (self *Pipe) Transact(key *ethcrypto.KeyPair, rec []byte, value, gas, price
|
|||||||
|
|
||||||
return tx.Hash(), nil
|
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
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user