13 lines
273 B
C
13 lines
273 B
C
|
#ifndef APP_H_
|
||
|
#define APP_H_
|
||
|
|
||
|
|
||
|
/***************************************************
|
||
|
* config.
|
||
|
***************************************************/
|
||
|
#define APP_NAME "sgx-wallet"
|
||
|
#define ENCLAVE_FILE "enclave.signed.so"
|
||
|
#define WALLET_FILE "wallet.seal"
|
||
|
|
||
|
|
||
|
#endif // APP_H_
|