Serialize `eth_feeHistory` block count as `QUANTITY` (#668)

* Serialize eth_feeHistory block count as QUANTITY

* update changelog
This commit is contained in:
Nicholas Rodrigues Lordello 2021-12-10 16:49:27 +01:00 committed by GitHub
parent 59cf991828
commit 7bd42be0d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -12,6 +12,8 @@
[597](https://github.com/gakonst/ethers-rs/pull/597)
- Implement hex display format for `ethers::core::Bytes`
[#624](https://github.com/gakonst/ethers-rs/pull/624).
- Fix `fee_history` to first try with `block_count` encoded as a hex `QUANTITY`.
[#668](https://github.com/gakonst/ethers-rs/pull/668)
## ethers-solc

View File

@ -848,7 +848,7 @@ impl<P: JsonRpcClient> Middleware for Provider<P> {
self.subscribe([logs, filter]).await
}
async fn fee_history<T: Into<U256> + serde::Serialize + Send + Sync>(
async fn fee_history<T: Into<U256> + Send + Sync>(
&self,
block_count: T,
last_block: BlockNumber,
@ -862,7 +862,7 @@ impl<P: JsonRpcClient> Middleware for Provider<P> {
// decode the param from client side would fallback to the old API spec.
self.request(
"eth_feeHistory",
[utils::serialize(&block_count), last_block.clone(), reward_percentiles.clone()],
[utils::serialize(&block_count.into()), last_block.clone(), reward_percentiles.clone()],
)
.await
.or(self