Rano | Ranadeep
Rano | Ranadeep
I am getting the following error on Python 3.10, ``` Exception ignored in: Traceback (most recent call last): File "/home/XXXX/.cache/pypoetry/virtualenvs/modelator-py-5E8ZuFvv-py3.10/lib/python3.10/site-packages/multiprocess/pool.py", line 268, in __del__ File "/home/XXXX/.cache/pypoetry/virtualenvs/modelator-py-5E8ZuFvv-py3.10/lib/python3.10/site-packages/multiprocess/queues.py", line 375, in put...
It would be great if `Page` had a `url()` method to grab the current location of the page. [Puppeteer already has this.](https://pptr.dev/api/puppeteer.page.url)
Closes: #159 ## Description ______ ### PR author checklist - [ ] Linked to GitHub issue. - [ ] Added tests. - [ ] Updated code comments and documentation (e.g.,...
Currently, sovereign-ibc module expects its client and consensus state stored at counterparty as a direct serialization of its Any form. But in wasm-08 enabled cosmos-sdk chains, sovereign client and consensus...
Currently, the trusted height of the sovereign light client header must be the latest height at the stored client state. https://github.com/informalsystems/sovereign-ibc/blob/43de9b2fa02a35def46b2284b826ce9e4095fa7e/clients/sov-celestia/types/src/client_message/header.rs#L93-L98 This was required because the zk-prover didn't have recursive...
The following inequality should be `>=` https://github.com/cosmos/ibc-rs/blob/2378cd4ba45094b8ed856ff7dba5f1d0882f59ae/ibc-clients/ics07-tendermint/src/client_state/validation.rs#L224-L225 Considering the [`is_within_trust_period`](https://github.com/informalsystems/tendermint-rs/blob/6399b5b747fc42330b30a51c931a3244002529c4/light-client-verifier/src/predicates.rs#L112-L116) logic from `tendermint-rs`. To summarize, `tendermint-rs` expires a header at `trusted_header_time + trusting_period`. However, in `ibc-rs`, a header is active...
## Feature Summary Now that ibc-go comes with wasm-08, client state of an ibc-rs chain maybe stored as wasm wrapped format in wasm-08 enabled chain. So when `MsgConnectionOpenTry` or `MsgConnectionOpenAck`...
## Feature Summary Currently, we have `impl From for TmAbciEvent` for an event type `T`. But the other way around is not implemented. ## Proposal Implement `impl TryFrom for T`...
## Improvement Summary Rust functions don't have named arguments, and each argument is required. ```rs fn foo(x: u64, y: bool) { ... } ``` But this is a bit annoying...
Closes: #1269 ## Description ______ ### PR author checklist: - [ ] Added changelog entry, using [`unclog`](https://github.com/informalsystems/unclog). - [ ] Added tests. - [ ] Linked to GitHub issue. -...