Skip to content

Commit

Permalink
Update README with eth_getUncle* implementation status (#816)
Browse files Browse the repository at this point in the history
These were implemented a while ago, but we forgot to update the
supported APIs list.
  • Loading branch information
JamesHinshelwood authored Apr 8, 2024
1 parent e69eb5a commit 9e8166d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ Please open an issue or PR for APIs that you think should be included.
| `eth_getTransactionByHash` | 🟒 |
| `eth_getTransactionCount` | 🟒 |
| `eth_getTransactionReceipt` | 🟒 |
| `eth_getUncleByBlockHashAndIndex` | πŸ”΄ |
| `eth_getUncleByBlockNumberAndIndex` | πŸ”΄ |
| `eth_getUncleCountByBlockHash` | πŸ”΄ |
| `eth_getUncleCountByBlockNumber` | πŸ”΄ |
| `eth_getUncleByBlockHashAndIndex` | 🟒 |
| `eth_getUncleByBlockNumberAndIndex` | 🟒 |
| `eth_getUncleCountByBlockHash` | 🟒 |
| `eth_getUncleCountByBlockNumber` | 🟒 |
| `eth_newFilter` | πŸ”΄ |
| `eth_newBlockFilter` | πŸ”΄ |
| `eth_newPendingTransactionFilter` | πŸ”΄ |
Expand Down
1 change: 0 additions & 1 deletion zilliqa/src/api/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,6 @@ fn left_pad_arr<const N: usize>(v: &[u8]) -> Result<[u8; N]> {
Ok(arr)
}

// These are no-ops basically
fn get_uncle_count(_: Params, _: &Arc<Mutex<Node>>) -> Result<String> {
Ok("0x0".to_string())
}
Expand Down

0 comments on commit 9e8166d

Please sign in to comment.