@@ -25,8 +25,8 @@ import { NamespaceHttp } from '../../src/infrastructure/infrastructure';
2525import { Listener } from '../../src/infrastructure/Listener' ;
2626import { TransactionHttp } from '../../src/infrastructure/TransactionHttp' ;
2727import { Account } from '../../src/model/account/Account' ;
28+ import { AccountRestrictionType } from '../../src/model/account/AccountRestrictionType' ;
2829import { RestrictionModificationType } from '../../src/model/account/RestrictionModificationType' ;
29- import { RestrictionType } from '../../src/model/account/RestrictionType' ;
3030import { NetworkType } from '../../src/model/blockchain/NetworkType' ;
3131import { Mosaic } from '../../src/model/mosaic/Mosaic' ;
3232import { MosaicId } from '../../src/model/mosaic/MosaicId' ;
@@ -404,7 +404,7 @@ describe('TransactionHttp', () => {
404404 ) ;
405405 const addressModification = AccountRestrictionTransaction . createAddressRestrictionModificationTransaction (
406406 Deadline . create ( ) ,
407- RestrictionType . BlockAddress ,
407+ AccountRestrictionType . BlockAddress ,
408408 [ addressRestrictionFilter ] ,
409409 NetworkType . MIJIN_TEST ,
410410 ) ;
@@ -441,7 +441,7 @@ describe('TransactionHttp', () => {
441441 ) ;
442442 const addressModification = AccountRestrictionTransaction . createAddressRestrictionModificationTransaction (
443443 Deadline . create ( ) ,
444- RestrictionType . BlockAddress ,
444+ AccountRestrictionType . BlockAddress ,
445445 [ addressRestrictionFilter ] ,
446446 NetworkType . MIJIN_TEST ,
447447 ) ;
@@ -479,7 +479,7 @@ describe('TransactionHttp', () => {
479479 ) ;
480480 const addressModification = AccountRestrictionTransaction . createMosaicRestrictionModificationTransaction (
481481 Deadline . create ( ) ,
482- RestrictionType . BlockMosaic ,
482+ AccountRestrictionType . BlockMosaic ,
483483 [ mosaicRestrictionFilter ] ,
484484 NetworkType . MIJIN_TEST ,
485485 ) ;
@@ -516,7 +516,7 @@ describe('TransactionHttp', () => {
516516 ) ;
517517 const addressModification = AccountRestrictionTransaction . createMosaicRestrictionModificationTransaction (
518518 Deadline . create ( ) ,
519- RestrictionType . BlockMosaic ,
519+ AccountRestrictionType . BlockMosaic ,
520520 [ mosaicRestrictionFilter ] ,
521521 NetworkType . MIJIN_TEST ,
522522 ) ;
@@ -554,7 +554,7 @@ describe('TransactionHttp', () => {
554554 ) ;
555555 const addressModification = AccountRestrictionTransaction . createOperationRestrictionModificationTransaction (
556556 Deadline . create ( ) ,
557- RestrictionType . BlockTransaction ,
557+ AccountRestrictionType . BlockTransaction ,
558558 [ operationRestrictionFilter ] ,
559559 NetworkType . MIJIN_TEST ,
560560 ) ;
@@ -591,7 +591,7 @@ describe('TransactionHttp', () => {
591591 ) ;
592592 const addressModification = AccountRestrictionTransaction . createOperationRestrictionModificationTransaction (
593593 Deadline . create ( ) ,
594- RestrictionType . BlockTransaction ,
594+ AccountRestrictionType . BlockTransaction ,
595595 [ operationRestrictionFilter ] ,
596596 NetworkType . MIJIN_TEST ,
597597 ) ;
0 commit comments