Jorge S. Cuesta

Results 10 comments of Jorge S. Cuesta

Hi, I create a pull request to prevent errors dead server or leave it frozen without throw and error. https://github.com/fzaninotto/mongoose-lifecycle/pull/4

> @addiaddiaddi this help a lot for automation on things like for example control resources of the node and when a threshold is rich, using that token u can for...

This look like a great idea, but my doubts are: 1) how an app will be able to consume this behind pokt gateway that assign 4 random node during a...

I can understand your points @aimxhaisse, right now I'm build a full network explorer and one of the most complicated feature is understand how much an address win/lost because right...

/v1/query/unconfirmedtx sample ```bash curl -X POST localhost:8081/v1/query/unconfirmedtx -d '{"hash":"E6D01A59E4E39DD43C118281AA19328B211949A72CC6B95A3927A43B91A0583A"}' ``` ```json { "hash": "E6D01A59E4E39DD43C118281AA19328B211949A72CC6B95A3927A43B91A0583A", "stdTx": { "entropy": -1916588616508533000, "fee": [ { "amount": "10000", "denom": "upokt" } ], "memo": "C0D3R offline...

/v1/query/unconfirmedtxs ```bash curl -X POST localhost:8081/v1/query/unconfirmedtxs -d '{"page": 1, "per_page": 5}' ``` ```json { "page_count": 5, "total_txs": 3272, "txs": [ { "hash": "E6D01A59E4E39DD43C118281AA19328B211949A72CC6B95A3927A43B91A0583A", "stdTx": { "entropy": -1916588616508533000, "fee": [ {...

My team and I get it working using Redux ```javascript import React from 'react'; import PropTypes from 'prop-types'; import {intlShape} from 'react-intl'; import Promise from 'promise'; import isEmpty from 'lodash/isEmpty';...

![search not working](https://user-images.githubusercontent.com/9866992/58997545-84f4dd80-87d3-11e9-82bb-3215feec9ce4.png) Here is an screenshot were u can see that first it does not have the searchQuery and when it receive it update, call the `getDerivedStateFromProps` and return...

I fix the problem moving the logic from `getDerivedStateFromProps` to `componentDidUpdate` like React suggests, but I don't test other features that maybe could be broken. ```javascript componentDidUpdate(prevProps, prevState) { const...