solidity/test/compilationTests/corion/announcementTypes.sol
2017-07-05 12:39:55 +02:00

35 lines
896 B
Solidity

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
}
}