I'm using Oura v2 with the following configuration, and I'm having trouble figuring out whether it's possible to handle rollback events.
[source]
type = "N2C"
socket_path = "state-node-preprod/node.socket"
[chain]
type = "preprod"
[intersect]
type = "Tip"
[[filters]]
type = "SplitBlock"
[[filters]]
type = "ParseCbor"
[[filters]]
type = "Select"
skip_uncertain = false
[filters.predicate]
any = [
<multiple addresses>
]
[sink]
type = "WebHook"
url = "http://localhost:8000/event"
timeout = 30000
error_policy = "Continue"
When using the FileRotate sink, I can see reset events, which I assume correspond to the rollback events I'm interested in. However, I don't receive these events when using the WebHook sink.
Handling rollbacks is critical for the application I'm currently writing, so I would appreciate any assistance from the dev team on this.
I'm using Oura v2 with the following configuration, and I'm having trouble figuring out whether it's possible to handle rollback events.
When using the
FileRotatesink, I can see reset events, which I assume correspond to the rollback events I'm interested in. However, I don't receive these events when using theWebHooksink.Handling rollbacks is critical for the application I'm currently writing, so I would appreciate any assistance from the dev team on this.