You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
On the IRI, there is a (configurable) size limit for certain requests (https://github.com/iotaledger/iri/blob/v1.4.1.6/src/main/java/com/iota/iri/service/API.java#L111).
This can cause certain requests to fail if the application tries to call e.g.,
get_balances
with too many addresses.iota.adapters.wrappers
) that enforces max request limit on certain requests. The default limit is1000
(https://github.com/iotaledger/iri/blob/v1.4.1.6/src/main/java/com/iota/iri/conf/Configuration.java#L118).For safety, the wrapper should have a [mutable] whitelist of commands that it will operate on.
Bonus points: add support for the other limits as well (
maxFindTx
,maxGetTrytes
, etc.).The text was updated successfully, but these errors were encountered: