2018年8月20日
摘要: 在 以太坊中合约间是可以相互调用,并且正常进行参数传递以及返回值处理.contract1.solpragma solidity ^0.4.0;contract Test1 { uint256 public v=7; function vote(uint256 a) public returns (uint256) { v=a; return (a); ... 阅读全文
posted @ 2018-08-20 14:34 baizx 阅读(1029) 评论(0) 推荐(0) 编辑