@@ -353,6 +353,7 @@ class ProgramManager {
353
353
) ;
354
354
}
355
355
356
+ // Check if the account has sufficient credits to pay for the transaction
356
357
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
357
358
358
359
return await this . networkClient . submitTransaction ( tx ) ;
@@ -570,6 +571,7 @@ class ProgramManager {
570
571
) ;
571
572
}
572
573
574
+ // Check if the account has sufficient credits to pay for the transaction
573
575
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
574
576
575
577
return await this . networkClient . submitTransaction ( tx ) ;
@@ -798,6 +800,7 @@ class ProgramManager {
798
800
) ;
799
801
}
800
802
803
+ // Check if the account has sufficient credits to pay for the transaction
801
804
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
802
805
803
806
return await this . networkClient . submitTransaction ( tx ) ;
@@ -897,6 +900,7 @@ class ProgramManager {
897
900
) ;
898
901
}
899
902
903
+ // Check if the account has sufficient credits to pay for the transaction
900
904
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
901
905
902
906
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1270,6 +1274,7 @@ class ProgramManager {
1270
1274
) ;
1271
1275
}
1272
1276
1277
+ // Check if the account has sufficient credits to pay for the transaction
1273
1278
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1274
1279
1275
1280
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1404,6 +1409,7 @@ class ProgramManager {
1404
1409
) ;
1405
1410
}
1406
1411
1412
+ // Check if the account has sufficient credits to pay for the transaction
1407
1413
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1408
1414
1409
1415
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1547,6 +1553,7 @@ class ProgramManager {
1547
1553
) ;
1548
1554
}
1549
1555
1556
+ // Check if the account has sufficient credits to pay for the transaction
1550
1557
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1551
1558
1552
1559
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1675,6 +1682,7 @@ class ProgramManager {
1675
1682
) ;
1676
1683
}
1677
1684
1685
+ // Check if the account has sufficient credits to pay for the transaction
1678
1686
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1679
1687
1680
1688
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1739,6 +1747,7 @@ class ProgramManager {
1739
1747
...additionalOptions ,
1740
1748
} ;
1741
1749
1750
+ // Check if the account has sufficient credits to pay for the transaction
1742
1751
return await this . buildExecutionTransaction ( executeOptions ) ;
1743
1752
}
1744
1753
@@ -1794,6 +1803,7 @@ class ProgramManager {
1794
1803
) ;
1795
1804
}
1796
1805
1806
+ // Check if the account has sufficient credits to pay for the transaction
1797
1807
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1798
1808
1799
1809
return await this . networkClient . submitTransaction ( tx ) ;
@@ -1926,6 +1936,7 @@ class ProgramManager {
1926
1936
) ;
1927
1937
}
1928
1938
1939
+ // Check if the account has sufficient credits to pay for the transaction
1929
1940
this . checkFee ( feeAddress . to_string ( ) , tx . feeAmount ( ) ) ;
1930
1941
1931
1942
return this . networkClient . submitTransaction ( tx ) ;
0 commit comments