From 13cebc2c6f33efb50ead9d38c136c51c701e1ba6 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Wed, 14 Feb 2024 11:20:22 +0100 Subject: [PATCH] Remove unused argument --- integrations/approval.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/approval.go b/integrations/approval.go index 2bce16a..454089b 100644 --- a/integrations/approval.go +++ b/integrations/approval.go @@ -12,7 +12,7 @@ func NewIntegratedApproval() *IntegratedApprovalImpl { return &IntegratedApprovalImpl{} } -func (v *IntegratedApprovalImpl) PreparePeer(peer *nbpeer.Peer, _ *account.ExtraSettings, _ []string) *nbpeer.Peer { +func (v *IntegratedApprovalImpl) PreparePeer(peer *nbpeer.Peer, _ *account.ExtraSettings) *nbpeer.Peer { return peer.Copy() }