@tapforce/pod-bridge-sdk 1.1.3 → 1.1.4
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.
|
@@ -91,8 +91,8 @@ class PodBridgeTrackerClient {
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
|
-
// Check claim status
|
|
95
|
-
await this.updateClaimStatus(deposits
|
|
94
|
+
// Check claim status (queries POD chain, not bridged)
|
|
95
|
+
await this.updateClaimStatus(deposits);
|
|
96
96
|
return deposits.sort((a, b) => b.timestamp - a.timestamp);
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
@@ -167,8 +167,8 @@ class PodBridgeTrackerClient {
|
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
|
-
// Check claim status
|
|
171
|
-
await this.updateClaimStatus(deposits
|
|
170
|
+
// Check claim status (queries POD chain, not bridged)
|
|
171
|
+
await this.updateClaimStatus(deposits);
|
|
172
172
|
return deposits.sort((a, b) => b.timestamp - a.timestamp);
|
|
173
173
|
}
|
|
174
174
|
/**
|