Greg Zaitsev
Greg Zaitsev
ReDeFi is the Ethereum fork that aims to integrate banking and blockchain transactions. Landing page with more information: https://redefi.world/
**🧐 Motivation** The most basic type of vesting is linear when after the cliff period the fixed portions of token are released to the beneficiary on every time interval. It...
Huobi response contains numeric order state in case of cancellation error, so this deserialization results in marshalling error: ``` result := order.CancelOrderByIdResponse{} jsonErr := json.Unmarshal([]byte(postResp), &result) ```
Fixing the [issue 51](https://github.com/HuobiRDCenter/huobi_Golang/issues/51) due to type mismatch between Huobi response (which is numeric) and `CancelOrderByIdResponse.OrderState`, which is string.
A "--dev" substrate node needs to be setup in docker so that tests do not depend on concrete nodes. TravisCI needs to be pointed to this node for testing. Should...