Browse Source

Fix error when POST is called on /fees endpoint

Pavel Ševčík 3 years ago
parent
commit
0154d22169
No known key found for this signature in database GPG Key ID: CFA54E4C0CD58DF0
  1. 5
      accounts/fees-rest-api.js

5
accounts/fees-rest-api.js

@ -29,6 +29,11 @@ class FeesRestApi {
authMgr.checkAuthentication.bind(authMgr),
this.getFees.bind(this),
)
this.httpServer.app.post(
'/fees',
authMgr.checkAuthentication.bind(authMgr),
this.getFees.bind(this),
)
// Refresh the network fees
rpcFees.refresh()
}

Loading…
Cancel
Save