novasamatech / substrate-sdk-android

Native Android SDK for developing client apps for Substrate-based networks
https://novawallet.io
Apache License 2.0
12 stars 7 forks source link

Fix/infura batches #50

Closed valentunn closed 1 year ago

valentunn commented 1 year ago

Infura nodes does not group batch responses the same way request was grouped. They can group requests in batches whatever they think is more efficient

Cases:

Sending: batch([1]) Response: single(1)


Sending: batch(1, 2) Sending: single(3) Response: batch(1, 3) Response: single(2)