solidity/test/compilationTests/corion/announcementTypes.sol

35 lines
862 B
Solidity
Raw Normal View History

pragma solidity ^0.4.11;
contract announcementTypes {
enum announcementType {
/*
type of announcements
*/
newModule,
dropModule,
replaceModule,
replaceModuleHandler,
question,
transactionFeeRate,
transactionFeeMin,
transactionFeeMax,
transactionFeeBurn,
providerPublicFunds,
providerPrivateFunds,
providerPrivateClientLimit,
providerPublicMinRate,
providerPublicMaxRate,
providerPrivateMinRate,
providerPrivateMaxRate,
providerGasProtect,
providerInterestMinFunds,
providerRentRate,
schellingRoundBlockDelay,
schellingCheckRounds,
schellingCheckAboves,
schellingRate,
publisherMinAnnouncementDelay,
publisherOppositeRate
}
2017-07-05 10:28:15 +00:00
}