Uriel Mihura

Results 44 issues of Uriel Mihura

Currently only the db is dockerized.

frontend

User must sign merkle root + how many proofs he submitted. Also Batch must have an id or nonce to avoid users signing for 2 valid batches at once. PaymentService...

If we can calculate an aproximate or upper bound gas cost of respondToTask, we can send this more accurate value, either from batcher to BatcherPaymentService, or add the gas cost...

Throughout the code there are some cases where we check user's balance is >0 instead of the appropriate values. For example: - Batcher checks user has `> 0` balance before...

Currently ``` struct BatchState { uint32 taskCreatedBlock; bool responded; address batcherAddress; } ``` should be ``` struct BatchState { address batcherAddress; uint32 taskCreatedBlock; bool responded; } ``` Also, `batcherAddress` should...

The removal of GO task sender should also refactor test_examples since other parts of the codebase make use of its contents, principally the proof generators

After the upgrade of the batcher that sends a response to the sender, most of the make batcher_send targets have stopped working

On this first improvement of observability we aim to add OBS on: - Batcher - [ ] Received Proofs -> Counter - [ ] Qty of proofs on queue ->...