switch to pallet_revive runtime (#40)

Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
Cyrill Leutwiler
2024-09-03 17:18:22 +02:00
committed by GitHub
parent 41c8d4e955
commit d2f76b645f
66 changed files with 3023 additions and 2911 deletions
+16
View File
@@ -0,0 +1,16 @@
#include <stdbool.h>
#include "polkavm_guest.h"
extern void __entry(bool);
static void deploy() {
__entry(true);
}
static void call() {
__entry(false);
}
POLKAVM_EXPORT(void, deploy)
POLKAVM_EXPORT(void, call)