jimthematrix
jimthematrix
When geth experiences a non-graceful crash, ethconnect will retry the pending transactions. The `eth_estimateGas` calls will be made during the retries. After the node recovers, it will perform a rewind...
from one of our performance testing runs we observed a crash with the following logs: ``` time="2020-01-24T04:14:51Z" level=info msg="Consumer session cleanup. Claims=map[zzo8ywgn54-zzax9xn2pu-replies:[0]] Member=2984c4ea-2db0-4ef2-6974-a16743d14c52-36b90936-e43f-4ee1-9580-106481b21fdb Generation=7" time="2020-01-24T04:14:51Z" level=info msg="Inserted receipt 3f7ab219-d070-4e1f-7a2e-1050974354c0 into...
Besides channel specific functions, we should also add common API endpoints: - release version - list channels - get channel details: memberships, policies, block height - query transactions - query...
`name` value is empty in the response body of a successful registration (calls to `POST /identities`)
For an async transaction request, if the transaction failed to submit, we should record the error in the receipt. instead, currently no receipts are stored in the leveldb for failed...
Stand up real components to test various functions, especially those that rely on external components: - mongodb - kafka Run automated tests to carry out end to end scenarios to...
at the moment this doesn't seem to work: ``` blockfilter = headertypefilter.New(cb.HeaderType_CONFIG, cb.HeaderType_CONFIG_UPDATE) ``` when making channel config changes, like adding or deleting a peer node, no events are being...
Currently receipts are not produced and saved in the receipts DB until after the transaction has completed. This can be confusing when the client attempts to get the state of...
The code around the Kafka based transaction handler is completely untested. There must be a lot of bugs to be worked out. Plus the fact that we are going to...