valli_0x

Results 5 comments of valli_0x

I'm not sure, but you can use the [raft](https://github.com/hashicorp/raft) library fro you purposes. [Hashicorp vault](https://github.com/hashicorp/vault) uses the raft library for storage and for providing consensus.

@ahsan-arif publicKey, err := c.PublicPoint().MarshalBinary() if err != nil { return err } pubkeyECDSA, err := crypto.DecompressPubkey(publicKey) if err != nil { return err } pub := crypto.FromECDSAPub(pubkeyECDSA) address :=...

@veorq I fixed it, accept the pr, please

@tmpfs I was able to get the value of v and send tx- signature := signResult.(*ecdsa.Signature) r, _ := signature.R.MarshalBinary() s, _ := signature.S.MarshalBinary() rs := make([]byte, 0) rs =...

the value of v has been changed in the MarshalBinary function: https://github.com/taurusgroup/multi-party-sig/blob/d44e9838043a4bd8ecaf9b7471b80ee8a952a81d/pkg/math/curve/secp256k1.go#L199-L210