Fix reentrancy tests

This commit is contained in:
Amir Bandeali
2019-10-27 14:23:19 -07:00
parent dcff7d511b
commit cdfd62a296
2 changed files with 2 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ export const constants = {
ExchangeFunctionName.TransferOwnership,
ExchangeFunctionName.SetProtocolFeeMultiplier,
ExchangeFunctionName.SetProtocolFeeCollectorAddress,
ExchangeFunctionName.DetachProtocolFeeCollector,
],
SINGLE_FILL_FN_NAMES: [ExchangeFunctionName.FillOrder, ExchangeFunctionName.FillOrKillOrder],
BATCH_FILL_FN_NAMES: [

View File

@@ -34,4 +34,5 @@ export enum ExchangeFunctionName {
TransferOwnership = 'transferOwnership',
SetProtocolFeeMultiplier = 'setProtocolFeeMultiplier',
SetProtocolFeeCollectorAddress = 'setProtocolFeeCollectorAddress',
DetachProtocolFeeCollector = 'detachProtocolFeeCollector',
}