Quake Wang

Results 33 comments of Quake Wang

weird, trying revert commit and trigger the CI again

> Hmmm looks like macos CI is failing (for likely unrelated reasons ??) I'm sure the CI error has nothing to do with this commit, I reverted the commit and...

I will create a separate PR to try `xcrun`, but I suspect that's not the causing, since test output reports: ``` cargo dyldinfo ["-lazy_bind", "-bind", "/Library/Developer/CommandLineTools/usr/bin/dyldinfo"] output: err: BadMagic(3405691582) ```...

> i lunched Neuron after syncing on node inside was completed ! and i get this error and the neuron keep blocked also , so if i close the neuron...

first, you need to calculate the hash of the public key, we are using blake2b with a personalization string ( https://github.com/nervosnetwork/ckb/wiki/ckbhash ), this is the python demo code: ``` def...

we follow the bip44, you may find registered nervos ckb coin type here: https://github.com/satoshilabs/slips/blob/master/slip-0044.md , the code is 309, and the derivation path is `m/44'/309'/0'/`

> For constructors, you can probably parse it from a string, like the treatment for decimal: looks good to me, I will try it, thanks. > BTW, why is it...

I tried to implement your suggestion and found it very easy to integrate, thanks. ```rust use num_bigint::BigUint; use num_traits::Num; use rhai::{Engine, EvalAltResult}; use std::str::FromStr; fn to_uint(s: &str) -> Result {...

> Why do we choose MMR over other accumulators/vector commitments? Do we choose MMR because of its trustlessness? We chose MMR for the following reasons 1. no trusted setup 2....

> Why use MMR to record the commitment of all cells instead of using an SMT to record the commitment of the current live cells (like a state-tree)? Since we...