From 6b3e86104a0852985f2a332eb808bcd137d11c4d Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Thu, 22 May 2025 16:00:10 +0530 Subject: [PATCH] accounts/abi/bind/backends: HistoryPruningCutoff in simulated returns 0 --- accounts/abi/bind/backends/simulated.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index 9e89dcf460..92b34c7928 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -982,7 +982,7 @@ func (fb *filterBackend) CurrentView() *filtermaps.ChainView { } func (fb *filterBackend) HistoryPruningCutoff() uint64 { - panic("implement me") + return 0 } func nullSubscription() event.Subscription {