dkg.js 6.0.13 → 6.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,6 +39,10 @@ class ValidationService {
39
39
  this.validateAuthToken(authToken);
40
40
  }
41
41
 
42
+ validateSetAllowance(blockchain) {
43
+ this.validateBlockchain(blockchain);
44
+ }
45
+
42
46
  validateIncreaseAllowance(blockchain) {
43
47
  this.validateBlockchain(blockchain);
44
48
  }
@@ -127,9 +131,11 @@ class ValidationService {
127
131
  this.validateAuthToken(authToken);
128
132
  }
129
133
 
130
- validateWaitAssetUpdateFinalization(UAL, blockchain) {
134
+ validateWaitAssetUpdateFinalization(UAL, blockchain, frequency, maxNumberOfRetries) {
131
135
  this.validateUAL(UAL);
132
136
  this.validateBlockchain(blockchain);
137
+ this.validateFrequency(frequency);
138
+ this.validateMaxNumberOfRetries(maxNumberOfRetries);
133
139
  }
134
140
 
135
141
  validateAssetUpdateCancel(UAL, blockchain) {
@@ -1,3 +0,0 @@
1
- class IndexOperationsManager {}
2
-
3
- module.exports = IndexOperationsManager;