Nic
Nic
Perhaps `$IPFS_GATEWAY` and `$IPFS_PATH/gateway` should have a "none" option? It will signal to an application to stop searching for gateways and fail instead. For example if `$IPFS_GATEWAY` is set to...
Since #9156 has been merged, should this issue be closed?
I want to add that litecoin transactions are a lot cheaper than bitcoin right now. Litecoin calendar servers will be able to anchor much more frequently for the same price.
> All tests must pass (npm test). (Rarely test fails for networking issue, if you think it's your case ask the maintainers in the comments to relaunch the travis build)...
I don't remember where, but I did read somewhere that `ipfs:`(without the `//`) and `ipfs:/` should also be interpreted as ipfs urls. The same goes for `ipns://`. In addition, `dweb://ipfs/`...
Currently `std` doesn't have a `div_rem` function and relies on LLVM to merge `/` and `%`. Therefor, we don't have an exact mold to fill. The most obvious and probably...
Signed `div_euclid` has both a `/` and a `%` of the same operands. https://github.com/nlordell/ethnum-rs/blob/1cd9388a0a6c4e8b7e7e0e5dc49bda6c68f2d44b/src/int/api.rs#L1894-L1900 I wrapped the function in an `#[inline(never)]` function `foo`, and did a release build to x86_64...
I don't think reverting the whole thing is necessary because the unsoundness can be fixed by just adding a `- 1`. However, if you do decide revert it, I'll take...
I think that if a debug assertion triggers as a result of user code, then it would be nice for it to always obey the callers debug-assertions flag, but if...
``` rust // SAFETY: We just checked this is a power of two. and above zero. let power_used = unsafe { intrinsics::cttz_nonzero(self) as u32 }; if exp > Self::BITS /...