From 22c5f97370a749f4785784cc0b3cd1a986af1902 Mon Sep 17 00:00:00 2001 From: Alex Forshtat Date: Thu, 18 Jul 2024 08:50:41 +0200 Subject: [PATCH] Fix syntax error --- core/state_processor_rip7560.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state_processor_rip7560.go b/core/state_processor_rip7560.go index 9dd0229826..8370f5046d 100644 --- a/core/state_processor_rip7560.go +++ b/core/state_processor_rip7560.go @@ -146,7 +146,7 @@ func BuyGasRip7560Transaction(st *types.Rip7560AccountAbstractionTx, state vm.St chargeFrom := st.Sender if st.Paymaster != nil && st.Paymaster.Cmp(common.Address{}) != 0 { - chargeFrom = *st.Paymaster + chargeFrom = st.Paymaster } if have, want := state.GetBalance(*chargeFrom), balanceCheck; have.Cmp(want) < 0 {