@@ -397,7 +397,7 @@ describe("ThanksToken", () => {
397
397
expect ( Number ( mintableAmount ) ) . to . be . equal ( 600000000000000000000 ) ;
398
398
399
399
await DeployedThanksToken . write . mint (
400
- [ address2Validated , mintableAmount / 2n , relatedRoles ] ,
400
+ [ address2Validated , mintableAmount / 2n , relatedRoles , "0x" ] ,
401
401
{
402
402
account : address1 . account ,
403
403
} ,
@@ -542,7 +542,7 @@ describe("ThanksToken", () => {
542
542
543
543
try {
544
544
await DeployedThanksToken . write . mint (
545
- [ address2Validated , amountToMint , relatedRoles ] ,
545
+ [ address2Validated , amountToMint , relatedRoles , "0x" ] ,
546
546
{ account : address1 . account } ,
547
547
) ;
548
548
} catch ( error : any ) {
@@ -678,7 +678,7 @@ describe("ThanksToken", () => {
678
678
679
679
try {
680
680
await DeployedThanksToken . write . mint (
681
- [ address1Validated , 1n , relatedRoles ] ,
681
+ [ address1Validated , 1n , relatedRoles , "0x" ] ,
682
682
{ account : address1 . account } ,
683
683
) ;
684
684
// If we get here, the mint succeeded when it should have failed
@@ -697,7 +697,7 @@ describe("ThanksToken", () => {
697
697
] ;
698
698
try {
699
699
await DeployedThanksToken . write . mint (
700
- [ address2Validated , 1000000n , relatedRoles ] ,
700
+ [ address2Validated , 1000000n , relatedRoles , "0x" ] ,
701
701
{ account : address1 . account } ,
702
702
) ;
703
703
// If we get here, the mint succeeded when it should have failed
@@ -735,7 +735,7 @@ describe("ThanksToken", () => {
735
735
736
736
// Mint from address1 to address3, who is a new participant
737
737
await DeployedThanksToken . write . mint (
738
- [ address3Validated , mintableAmount , relatedRoles ] ,
738
+ [ address3Validated , mintableAmount , relatedRoles , "0x" ] ,
739
739
{ account : address1 . account } ,
740
740
) ;
741
741
@@ -757,7 +757,7 @@ describe("ThanksToken", () => {
757
757
expect ( mintableAmount2 > 0n ) . to . be . true ;
758
758
759
759
await DeployedThanksToken . write . mint (
760
- [ address2Validated , mintableAmount2 , relatedRoles ] ,
760
+ [ address2Validated , mintableAmount2 , relatedRoles , "0x" ] ,
761
761
{ account : address1 . account } ,
762
762
) ;
763
763
0 commit comments