@sentio/runtime 2.47.0-rc.2 → 2.47.0-rc.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.
package/package.json
CHANGED
package/src/full-service.ts
CHANGED
@@ -129,6 +129,11 @@ export class FullProcessorServiceImpl implements ProcessorServiceImplementation
|
|
129
129
|
// }
|
130
130
|
}
|
131
131
|
break
|
132
|
+
case HandlerType.ETH_BLOCK:
|
133
|
+
if (dataBinding.data?.ethBlock?.block) {
|
134
|
+
dataBinding.data.ethBlock.block.transactions = []
|
135
|
+
}
|
136
|
+
break
|
132
137
|
case HandlerType.UNKNOWN:
|
133
138
|
if (dataBinding.data?.ethBlock) {
|
134
139
|
if (dataBinding.data.raw.length === 0) {
|