Mark Tyneway

Results 344 comments of Mark Tyneway

Any additional comments you could leave around the tests would be super useful for people who want to implement against the test suite or review.

Do you mind squashing your commits in a way that modularizes changes to different files and having commit messages like: `package name: brief description` See the commit history for examples....

> I'm hesitant to expand the interface to let users pick their estimator because – in theory – the estimators should behave the same. Would it be more convincing if...

Dear @musicregistry, I (a speaker in the video) do not represent anybody else's views besides my own. Please do not confuse my opinions with the community's opinions. If you read...

Handshake is no longer using Cuckoo Cycle as a Proof of Work, so it is not very likely that this repo will be updated to support those variants. See https://github.com/handshake-org/hsd/issues/24...

Since `hnsd.conf` is no longer being parsed as a config file, should it be renamed to something like `hnsd.env` and have each of the possible environment variables in it but...

There is an RPC on the node that can be used for this, `validateresource` See https://github.com/handshake-org/hsd/pull/429

Name specific REST calls implemented here: https://github.com/handshake-org/hs-client/pull/16

> In my personal view, I view Twitter as an effective marketing tool to address a crypto audience. Crypto Twitter is where most new retail investors look to to find...

Right now, the way that I do this is: ```golang abi, err := bindings.Contract.GetAbi() if err != nil { return nil, err } method, err := abi.MethodById(calldata) if err !=...