+Ch0pin

Results 85 issues of +Ch0pin

As discussed with @sappenin we should check if our CCP implementation is compatible with the one from the Java and Javascript connectors and if not, write some tests and identify...

crate/interledger-ccp

https://github.com/taiki-e/cargo-hack Would be nice to have it or augment our pipeline so that we test all features and ensure we're not missing anything.

ci

We can probably add idempotent retries to the client/server of ILP over HTTP, similarly to the one in the engines. I think this is slightly different as we cannot assume...

question
feature
crater/interledger-http

I think we can rename the `min_balance` variable to something like: `credit_limit`. It's slightly clearer I think. `settle_to` could also be renamed to something more descriptive, not sure yet what:...

question

Flamegraphs are a nice way to visualize where time is spent while the code runs. We could use https://github.com/llogiq/flamer which allows adding a simple macro to functions that we want...

enhancement
performance
ci

This was originally spotted in https://github.com/interledger-rs/interledger-rs/pull/355#discussion_r329393522. Currently we reject routing tables which have the same epoch as ours, while investigating the flaky test, it was found that a valid routing...

question

This should be an issue for a separate PR but I wonder if we need to configure the ILP address for Peers. We might be able to get their address...

feature

Currently when we insert a Parent, we send them an ILDCP Request, get the address they have assigned to us, and update our routes and store's ilp address based on...

question

> FWIW, the reason I originally had these other values here was to allow for better ways of accounting for the balance. This store isn't doing proper accounting right now....

enhancement

Currently we just log data to a file. This is inefficient and prone to failure. We should instead use some kind of database: - Sqlite3 (maybe https://github.com/gakonst/sqlitemap/) - https://github.com/spacejam/sled/ -...