@stellar-expert/tx-meta-effects-parser 5.1.0 → 5.1.1
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.
package/package.json
CHANGED
|
@@ -776,8 +776,8 @@ class EffectsAnalyzer {
|
|
|
776
776
|
}
|
|
777
777
|
|
|
778
778
|
processInstanceDataChanges(before, after) {
|
|
779
|
-
const storageBefore = before.storage
|
|
780
|
-
const storageAfter = [...after.storage || []]
|
|
779
|
+
const storageBefore = before.storage || []
|
|
780
|
+
const storageAfter = [...(after.storage || [])]
|
|
781
781
|
for (const {key, val} of storageBefore) {
|
|
782
782
|
let newVal
|
|
783
783
|
for (let i = 0; i < storageAfter.length; i++) {
|