Merge pull request #983 from tgerring/issue958

Format contract code as hexdata
This commit is contained in:
Jeffrey Wilcke 2015-05-14 10:38:01 -07:00
commit 69c78ddbb4
1 changed files with 1 additions and 0 deletions

View File

@ -349,6 +349,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
if err != nil {
return err
}
contract.Code = newHexData(contract.Code).String()
*reply = contract
case "eth_newFilter":