2022-07-05 14:38:04 +02:00
|
|
|
#ifndef SCHEMA_HASH_H_
|
|
|
|
|
#define SCHEMA_HASH_H_
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_EIP712_FULL_SUPPORT
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
2022-07-19 11:49:18 +02:00
|
|
|
bool compute_schema_hash(void);
|
2022-07-05 14:38:04 +02:00
|
|
|
|
2022-07-19 11:49:18 +02:00
|
|
|
#endif // HAVE_EIP712_FULL_SUPPORT
|
2022-07-05 14:38:04 +02:00
|
|
|
|
2022-07-19 11:49:18 +02:00
|
|
|
#endif // SCHEMA_HASH_H_
|