ckb-script 1.1.0

CKB component to run the type/lock scripts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#include "spawn_utils.h"

int main() {
    int err = 0;
    for (size_t i = 0; i < 10000; i++) {
        err = simple_spawn(0);
        CHECK(err);
    }

exit:
    return err;
}