ljedrz
ljedrz
Ah yeah, the test points to in-memory storage; should I make the (snarkOS) ledger more generic, or disable the test more thoroughly?
> how thats gonna build up the generic storage though? It's not for building generic storage; a single type of storage would still be used in the test.
It should be simple enough to reuse the connection; I'll look into it tomorrow.
Nope, looks fine, so we should apply the correct unwrap in order to avoid deep-cloning.
Due to the way those values were being taken out of their `Arc`s, I thought that maybe `Arc::try_unwrap` was initially failing, and that's why it was not being used. Such...
Rebased against `testnet3.2`. It should also be noted that switching the deep clones to unwraps makes that operation much faster: it takes it down from ~`23µs` to ~`70ns`, which is...
If extra safety is desired, we should instead use types, e.g. introduce a `VerifiedBlock` and/or a `VerifiedTransaction` that have the same contents as their unverified counterparts and are returned by...
Cc https://github.com/AleoHQ/snarkVM/issues/986
Rebased and applied comments.
> Binding to all IP addresses by default will generally cause confusion. I'd also prefer it to be set to localhost instead, it should work fine as long as the...