@stellar-expert/tx-meta-effects-parser 7.0.0-rc.4 → 7.0.0-rc.5
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 +1 -1
- package/src/index.js +4 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -169,7 +169,10 @@ function parseTxOperationsMeta({
|
|
|
169
169
|
}
|
|
170
170
|
if (isV4Meta) {
|
|
171
171
|
params.diagnosticEvents = metaValue.diagnosticEvents()
|
|
172
|
-
|
|
172
|
+
const invocationOp = metaValue.operations()[0]
|
|
173
|
+
if (invocationOp) {
|
|
174
|
+
params.events = invocationOp.events()
|
|
175
|
+
}
|
|
173
176
|
}
|
|
174
177
|
params.mapSac = mapSac
|
|
175
178
|
}
|