Valentin

Results 68 issues of Valentin

I think ultimately we might even want to share this state across run-loops so that the next batch uses the current batch's nonce +1 even if the cancellation tx is...

There are still two url parameters from the nodejs price estimator that we haven't implemented: atoms=true and hops= `hops` doesn't apply to the pricegraph so I think we should remove...

Price Estimator

It's a shame that we blatantly copy this deploy script across repos but now even inside the same repo. I think there should be a way to share this logic...

cleanup

https://github.com/gnosis/dex-services/pull/864 changes ci to use the standard solver instead of the naive solver. Should we remove the naive solver from the code base? https://github.com/gnosis/dex-services/pull/864#pullrequestreview-410906827 > When I incorporated the open...

cleanup

See https://github.com/gnosis/ethcontract-rs/pull/395#discussion_r517846111

Dropping an UnsafeCell or calling into_inner can be seen as mutable access, which is not allowed to happen while another borrow exists. The downside of this change is the added...

Consider the following code: ```rust #[test] fn foo() { loom::model(|| { let a: loom::cell::UnsafeCell = Default::default(); let first_ref = a.get(); let second_ref = a.get_mut(); }); } ``` The test fails...

Following the official [instructions](https://coq.inria.fr/opam-using.html) on installing Coq through opam does not work on Arch Linux if the ocaml-findlib Arch Linux package is installed. For me, the package was installed because...