geth查询某个交易的具体信息

合同代码 pragma solidity ^0.4.6; contract SimpleStorage{ uint storedData; function set(uint x){ storedData=x; } function get() constant returns(uint retVal){ return storedData; } }
相关文章
相关标签/搜索