Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
fix: get fees for 7 days instead of 30
Browse files Browse the repository at this point in the history
  • Loading branch information
luciorubeens committed Jun 13, 2019
1 parent 2997efe commit 162e725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@
"android"
]
}
}
}
2 changes: 1 addition & 1 deletion src/providers/ark-api/ark-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ export class ArkApiProvider {

return Observable.create((observer) => {
this.httpClient.get(
`${this._network.getPeerAPIUrl()}/api/v2/node/fees?days=30`
`${this._network.getPeerAPIUrl()}/api/v2/node/fees?days=7`
).subscribe((response: NodeFeesResponse) => {
const data = response.data;
// Converts the new response to the old template
Expand Down

0 comments on commit 162e725

Please sign in to comment.