Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redefinition of MetaEvidence and other events #257

Closed
marsrobertson opened this issue May 5, 2019 · 3 comments
Closed

Redefinition of MetaEvidence and other events #257

marsrobertson opened this issue May 5, 2019 · 3 comments

Comments

@marsrobertson
Copy link

Part of #243 (bounty)

/** @dev To be emitted when meta-evidence is submitted.
* @param _metaEvidenceID Unique identifier of meta-evidence. Should be the `transactionID`.
* @param _evidence A link to the meta-evidence JSON that follows the ERC 1497 Evidence standard (https://github.com/ethereum/EIPs/issues/1497).
*/
event MetaEvidence(uint indexed _metaEvidenceID, string _evidence);

contract MultipleArbitrableTransaction is IArbitrable {

/** @dev To be emmited when meta-evidence is submitted.
* @param _metaEvidenceID Unique identifier of meta-evidence.
* @param _evidence A link to the meta-evidence JSON.
*/
event MetaEvidence(uint indexed _metaEvidenceID, string _evidence);

@clesaege
Copy link
Member

clesaege commented May 5, 2019

What do we need to redefine?

@marsrobertson
Copy link
Author

I think quite the opposite.

I think there is a duplication.

Event is defined twice.

Both in the IArbitrable.sol and the re-redefined in MultipleArbitrableTransaction.sol

Events are inherited: https://ethereum.stackexchange.com/questions/34666/are-events-not-inherited-in-solidity

@0xferit
Copy link
Member

0xferit commented May 25, 2019

Yeah, it is forgotten.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants