From f7acd06c459c7ba27c47cb46e08973eb5fe4cfe9 Mon Sep 17 00:00:00 2001 From: Raj Raorane <41839716+Raj-RR1@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:20:42 +0530 Subject: [PATCH] add support for txversion 2 --- app/src/substrate_dispatch.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/substrate_dispatch.h b/app/src/substrate_dispatch.h index 74e4da8..d43813f 100644 --- a/app/src/substrate_dispatch.h +++ b/app/src/substrate_dispatch.h @@ -35,6 +35,9 @@ extern "C" { case 1: \ return PD_CALL_##CALL##_V1; \ \ + case 2: \ + return PD_CALL_##CALL##_V2; \ + \ default: \ return 0; \ } \