Mutan compile

pull/150/head
obscuren 10 years ago
parent d79387c27e
commit 4008ff32c9
  1. 9
      ethpipe/pipe.go

@ -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
}

Loading…
Cancel
Save