We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b6b0f4 commit 202406dCopy full SHA for 202406d
geyser/handler_memory.go
@@ -263,7 +263,8 @@ func (h *MemoryAccountWithDataUpdateHandler) onStateObserved(ctx context.Context
263
if isInitialized {
264
if cachedVirtualAccountState.IsInitialized &&
265
cachedVirtualAccountState.Address == base58VirtualAccountAddress &&
266
- bytes.Equal(cachedVirtualAccountState.State, newVirtualAccountState) {
+ bytes.Equal(cachedVirtualAccountState.State, newVirtualAccountState) &&
267
+ observedAtSlot-cachedVirtualAccountState.Slot < 100 { // todo: configurable?
268
continue
269
}
270
0 commit comments