ChainSafe / ChainSafe/ethermint-scripts
Modifying contract to add in data fields and indexes
Abierto
- Lenguaje dominante
- JavaScript
- Estrellas
- 1
- Forks
- 0
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
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.
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.