diff --git a/integrations/approval.go b/integrations/approval.go index 584e58e..e63eb8e 100644 --- a/integrations/approval.go +++ b/integrations/approval.go @@ -8,8 +8,8 @@ import ( type IntegratedApprovalImpl struct { } -func NewIntegratedApproval() *IntegratedApprovalImpl { - return &IntegratedApprovalImpl{} +func NewIntegratedApproval() (*IntegratedApprovalImpl, error) { + return &IntegratedApprovalImpl{}, nil } func (v *IntegratedApprovalImpl) PreparePeer(_ string, peer *nbpeer.Peer, _ []string, _ *account.ExtraSettings) *nbpeer.Peer {