minor change
- floBlockchainAPI's readData: changing default limit option value from 1000 to no limit
This commit is contained in:
parent
58bee2e9db
commit
fe1ce64562
@ -7693,7 +7693,7 @@ Bitcoin.Util = {
|
||||
filter : custom filter funtion for floData (eg . filter: d => {return d[0] == '$'})
|
||||
*/
|
||||
readData: function (addr, options = {}) {
|
||||
options.limit = options.limit | 1000
|
||||
options.limit = options.limit | 0
|
||||
options.ignoreOld = options.ignoreOld | 0
|
||||
return new Promise((resolve, reject) => {
|
||||
this.promisedAPI(`api/addrs/${addr}/txs?from=0&to=1`).then(response => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user