Skip to content

Commit

Permalink
fix(loan-offer): fix loan offer creation method
Browse files Browse the repository at this point in the history
  • Loading branch information
kyzia551 committed Mar 9, 2019
1 parent 9477503 commit a569fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/LoanOffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class LoanOffer extends BaseLoanService implements LoanOfferAPIIn
public async create(lenderAddress: string, params: LoanOfferModel): Promise<Transaction> {
BaseService.checkAddressChecksum(lenderAddress)

return await this.apiRequest('/offer', 'loan offer creation', '', 'post', {
return await this.apiRequest('', 'loan offer creation', '', 'post', {
lender: lenderAddress,
...params
})
Expand Down

0 comments on commit a569fc9

Please sign in to comment.