ChainSafe / ChainSafe/ethermint-scripts
Modifying contract to add in data fields and indexes
未关闭
- 主要语言
- JavaScript
- 星标
- 1
- 派生
- 0
- PR 合并指标
- 30 天内没有已合并 PR
描述
Adding in data fields and indexes to contract.sol
The contract has been changed to:
pragma solidity ^0.6.1;
contract Logger {
event event1(uint256 count);
event event2(address indexed owner);
function emitTest(bool _name) public {
if (_name) {
emit event1(256);
} else {
emit event2(msg.sender);
}
}
}
```
This should provide additional event data to test different use cases with.
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。