Austin Abell

Results 70 issues of Austin Abell

unclear to me why this isn't hooked into install. This was a footgun I ran into, devs shouldn't have to know about this command. Tests were already broken, didn't extensively...

**Issue summary** Forest doesn't work out of the box on windows for sure, so the documentation should be updated for installation instructions for required components (OpenCL and protoc might be...

Priority: 4 - Low
Type: Enhancement

**Task summary** Currently we are only referencing one endpoint in https://github.com/ChainSafe/forest/blob/3eed3ac2a774853ae2fae5371696627fc4e3a81b/blockchain/beacon/src/drand.rs#L35 But there are multiple nodes available (Lotus has all the endpoints listed here https://github.com/filecoin-project/lotus/blob/master/build/drand.go) It would be best if...

Status: On Ice
Drand
Status: Unknown

**Task summary** tls security should be implement to allow more options for upgrade authentication. Currently Lotus supports both noise and tls, with a preference toward noise, but having both would...

Status: On Ice
Enhancement
Status: Unknown

It is not mentioned anywhere in the spec, but there is no distinction between which division algorithm is used. By default, golang uses truncating division for integers and the big.Int...

structs were fixed in https://github.com/near/borsh-rs/commit/985a20b0289b034a53fe6b2e3c799349d8cbd95f but this was not done for enums. cc @BenKurrek

Was asked the question of why this deserialization didn't work and I always assumed it was because of an incompatible interface or to minimize code size, but after playing with...

requires breakage
ser/de

Roughly, the pattern is: ``` #[derive(BorshSerialize, BorshDeserialize)] struct Outer { v: private::Inner, } mod private { use super::*; #[derive(BorshSerialize, BorshDeserialize)] pub(crate) struct Inner { val: T, } } ``` And...

closes #203 cc @esaminu does this fit the criteria for what wallet needs? What has changed: - interface changed from `'{"keys":["...", "..."]}'` to `'["...", "..."]'` to avoid redundant strings. -...