Mark Tyneway

Results 574 comments of Mark Tyneway

@pinheadmz I just rebased and cleaned up this PR, what do you think? The RPC endpoint `getnamedns` does DNS resolution by hooking into the `rs` and then returns the DNS...

@wi-ski - I have an open PR here for `GET /info/name/:name` https://github.com/handshake-org/hsd/pull/162 I'd happily close it if you got this PR cleaned up

A simple sleep function: ```javascript async function sleep(time) { return new Promise(resolve => setTimeout(resolve, time)); } ```

More useful helper functions by @braydonf https://github.com/bcoin-org/bcoin/pull/748/files#diff-e169f8c8ca803ee76312e094ba6f17cbR105 ```javascript common.event = async function event(obj, name) { return new Promise((resolve) => { obj.once(name, resolve); }); }; ``` https://github.com/bcoin-org/bcoin/pull/758/files#diff-e169f8c8ca803ee76312e094ba6f17cbR105 ```javascript common.forValue = async...

Can you mine less blocks? We don't want to dramatically extend the length of the test suite with just one set of tests

@wi-ski thanks for the bump. Just left a few comments for you

Tagging @kilpatty, this could be useful for hnscan.com

> ASM stands for "assembly" and should refer exclusively to opcode UTXO script in my opinion. I don't particularly agree with this, what about x86_64 assembly? There is no human...

> I think we should also add a fromASM I actually know somebody that uses bitcoinjs and cannot switch to bcoin because they rely on `fromASM` and bcoin doesn't have...

> `fromASM()` would just be a wrapper around / prettier version of this? Maybe we should continue this convo on a bcoin issue since this is offtopic, but look at...