Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Fix for missing model opts
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Apr 6, 2022
1 parent 60294b9 commit b3020be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paymail_service_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func (p *PaymailDefaultServiceProvider) createPaymailInformation(ctx context.Con
opts ...ModelOps) (paymailAddress *PaymailAddress, pubKey string, destination *Destination, err error) {

// Get the paymail address record
paymailAddress, err = getPaymail(ctx, alias+"@"+domain)
paymailAddress, err = getPaymail(ctx, alias+"@"+domain, opts...)
if err != nil {
return nil, "", nil, err
}
Expand Down

0 comments on commit b3020be

Please sign in to comment.