@gearbox-protocol/sdk 3.0.0-vfour.382 → 3.0.0-vfour.383
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.
|
@@ -82,7 +82,7 @@ class PoolSuite extends import_base.SDKConstruct {
|
|
|
82
82
|
return this.pool.underlying;
|
|
83
83
|
}
|
|
84
84
|
get dirty() {
|
|
85
|
-
return this.pool.dirty || this.
|
|
85
|
+
return this.pool.dirty || this.rateKeeper.dirty || this.pqk.dirty || this.interestRateModel.dirty;
|
|
86
86
|
}
|
|
87
87
|
get watchAddresses() {
|
|
88
88
|
return /* @__PURE__ */ new Set([
|
|
@@ -49,7 +49,7 @@ class PoolSuite extends SDKConstruct {
|
|
|
49
49
|
return this.pool.underlying;
|
|
50
50
|
}
|
|
51
51
|
get dirty() {
|
|
52
|
-
return this.pool.dirty || this.
|
|
52
|
+
return this.pool.dirty || this.rateKeeper.dirty || this.pqk.dirty || this.interestRateModel.dirty;
|
|
53
53
|
}
|
|
54
54
|
get watchAddresses() {
|
|
55
55
|
return /* @__PURE__ */ new Set([
|