mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 05:53:46 +00:00
* Check tx num for CCC ErrUnknown error. * Update worker.go * Small fix. * Update * Fix log. * Update version. * Update miner/worker.go Co-authored-by: Péter Garamvölgyi <peter@scroll.io> * Update according to review. * Fix to return 0 for uint64. * Add `tcount` to mock CCC, and function `SetTxNum`. * refactor * fix * add comments --------- Co-authored-by: Zhang Zhuo <mycinbrin@gmail.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
7 lines
251 B
C
7 lines
251 B
C
#include<stdint.h>
|
|
void init();
|
|
uint64_t new_circuit_capacity_checker();
|
|
void reset_circuit_capacity_checker(uint64_t id);
|
|
char* apply_tx(uint64_t id, char *tx_traces);
|
|
char* apply_block(uint64_t id, char *block_trace);
|
|
char* get_tx_num(uint64_t id);
|