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 Feb 26, 2024. It is now read-only.
Resolves#108
This updates ganache to match geth and parity when block numbers exceed `latest`
The only conflict occurs in eth_getTransactionCount where I opted to match geth's behavior.
```
#parity
swirl eth_getTransactionCount 0x00a329c0648769a73afac7f9381e08fb43dbea72 0xfff
{"jsonrpc":"2.0","error":{"code":-32602,"message":"Unknown block number"},"id":120}
#GETH
swirl eth_getTransactionCount 0x00a329c0648769a73afac7f9381e08fb43dbea72 0xfff
{"jsonrpc":"2.0","id":120,"result":null}
```
gracefully handle RPC requests with block numbers higher than latest
The text was updated successfully, but these errors were encountered: