@@ -11,7 +11,6 @@ const SecurityTokenRegistryMock = artifacts.require("./SecurityTokenRegistryMock
1111const  ERC20DividendCheckpointFactory  =  artifacts . require ( "./ERC20DividendCheckpointFactory.sol" ) ; 
1212const  EtherDividendCheckpointFactory  =  artifacts . require ( "./EtherDividendCheckpointFactory.sol" ) ; 
1313const  ManualApprovalTransferManagerFactory  =  artifacts . require ( "./ManualApprovalTransferManagerFactory.sol" ) ; 
14- const  SingleTradeVolumeRestrictionManagerFactory  =  artifacts . require ( './SingleTradeVolumeRestrictionTMFactory.sol' ) ; 
1514const  TrackedRedemptionFactory  =  artifacts . require ( "./TrackedRedemptionFactory.sol" ) ; 
1615const  PercentageTransferManagerFactory  =  artifacts . require ( "./PercentageTransferManagerFactory.sol" ) ; 
1716const  ScheduledCheckpointFactory  =  artifacts . require ( './ScheduledCheckpointFactory.sol' ) ; 
@@ -41,7 +40,6 @@ let I_TrackedRedemptionFactory;
4140let  I_ScheduledCheckpointFactory ; 
4241let  I_MockBurnFactory ; 
4342let  I_MockWrongTypeBurnFactory ; 
44- let  I_SingleTradeVolumeRestrictionManagerFactory ; 
4543let  I_ManualApprovalTransferManagerFactory ; 
4644let  I_VolumeRestrictionTransferManagerFactory ; 
4745let  I_PercentageTransferManagerFactory ; 
@@ -255,18 +253,6 @@ export async function deployLockupVolumeRTMAndVerified(accountPolymath, MRProxyI
255253    return  new  Array ( I_VolumeRestrictionTransferManagerFactory ) ; 
256254} 
257255
258- export  async  function  deploySingleTradeVolumeRMAndVerified ( accountPolymath ,  MRProxyInstance ,  polyToken ,  setupCost )  { 
259-     I_SingleTradeVolumeRestrictionManagerFactory  =  await  SingleTradeVolumeRestrictionManagerFactory . new ( polyToken ,  setupCost ,  0 ,  0 ,  {  from : accountPolymath  } ) ; 
260-     assert . notEqual ( 
261-         I_SingleTradeVolumeRestrictionManagerFactory . address . valueOf ( ) , 
262-         "0x0000000000000000000000000000000000000000" , 
263-         "SingleTradeVolumeRestrictionManagerFactory contract was not deployed" 
264-     ) ; 
265- 
266-     await  registerAndVerifyByMR ( I_SingleTradeVolumeRestrictionManagerFactory . address ,  accountPolymath ,  MRProxyInstance ) ; 
267-     return  new  Array ( I_SingleTradeVolumeRestrictionManagerFactory ) ; 
268- } 
269- 
270256export  async  function  deployScheduleCheckpointAndVerified ( accountPolymath ,  MRProxyInstance ,  polyToken ,  setupCost )  { 
271257    I_ScheduledCheckpointFactory  =  await  ScheduledCheckpointFactory . new ( polyToken ,  setupCost ,  0 ,  0 ,  {  from : accountPolymath  } ) ; 
272258    assert . notEqual ( 
0 commit comments