geth查詢某個交易的具體信息

合同代碼 pragma solidity ^0.4.6; contract SimpleStorage{ uint storedData; function set(uint x){ storedData=x; } function get() constant returns(uint retVal){ return storedData; } }
相關文章
相關標籤/搜索