mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-10 14:03:46 +00:00
* Upgrade to prover `v0.9.4`, and add `SetLightMode` function. * set ccc light_mode = false for validator * fix * bump version --------- Co-authored-by: Zhang Zhuo <mycinbrin@gmail.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io>
10 lines
325 B
C
10 lines
325 B
C
#include <stdbool.h>
|
|
#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);
|
|
char* set_light_mode(uint64_t id, bool light_mode);
|