Moved EIP712 filtering related code into its own file

This commit is contained in:
Alexandre Paillier
2022-07-05 14:38:04 +02:00
parent cd77ca5152
commit 399b865e5c
5 changed files with 282 additions and 242 deletions

View File

@@ -0,0 +1,12 @@
#ifndef SCHEMA_HASH_H_
#define SCHEMA_HASH_H_
#ifdef HAVE_EIP712_FULL_SUPPORT
#include <stdbool.h>
bool compute_schema_hash(void);
#endif // HAVE_EIP712_FULL_SUPPORT
#endif // SCHEMA_HASH_H_