ChainSafe / ChainSafe/ethermint-scripts
Modifying contract to add in data fields and indexes
Đang mở
- Ngôn ngữ chính
- JavaScript
- Star
- 1
- Fork
- 0
- Chỉ số merge pull request
- Không có pull request nào được merge trong 30 ngày
Mô tả
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.
Hướng dẫn đóng góp
Chưa lập chỉ mục được hướng dẫn đóng góp cho kho mã nguồn này
Đánh giá
Issue này chưa được đánh giá.