mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
disable the public explorer for now + dyn payee note: xzc coinbase value is already without dev fees warning: this wallet rpc is very slow and seems to slow down the backend (use it at your risks)
16 lines
198 B
C
16 lines
198 B
C
#ifndef LYRA2Z_H
|
|
#define LYRA2Z_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
|
|
void lyra2z_hash(const char* input, char* output, uint32_t len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|