From c19c65ebe4df96ff1952bb6ad796d092da8ea315 Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Fri, 3 Sep 2021 15:24:08 +0200 Subject: [PATCH 1/3] Update to latest plugin SDK --- ethereum-plugin-sdk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum-plugin-sdk b/ethereum-plugin-sdk index b49aace..3d9433e 160000 --- a/ethereum-plugin-sdk +++ b/ethereum-plugin-sdk @@ -1 +1 @@ -Subproject commit b49aace991c79b36489c09f040f46f5d031bd69a +Subproject commit 3d9433e3a0e4c034938f767fe8be928d554536de From 6217a0e51a8f32b200c12182cdd1b0436e523a4c Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Fri, 3 Sep 2021 17:49:35 +0200 Subject: [PATCH 2/3] Update plugin interface version --- src/paraswap_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paraswap_plugin.c b/src/paraswap_plugin.c index dbba318..8c58c2a 100644 --- a/src/paraswap_plugin.c +++ b/src/paraswap_plugin.c @@ -45,7 +45,7 @@ const uint8_t NULL_ETH_ADDRESS[ADDRESS_LENGTH] = {0x00, 0x00, 0x00, 0x00, 0x00, static void handle_init_contract(void *parameters) { ethPluginInitContract_t *msg = (ethPluginInitContract_t *) parameters; - if (msg->interfaceVersion != ETH_PLUGIN_INTERFACE_VERSION_1) { + if (msg->interfaceVersion != ETH_PLUGIN_INTERFACE_VERSION_LATEST) { msg->result = ETH_PLUGIN_RESULT_UNAVAILABLE; return; } From 87d00352943795f6536e4e60754ebef0a7c59ce4 Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Tue, 7 Sep 2021 18:00:27 +0200 Subject: [PATCH 3/3] Bump version 1.0.8 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 627f1d9..a82259d 100755 --- a/Makefile +++ b/Makefile @@ -26,8 +26,8 @@ APP_LOAD_PARAMS += $(COMMON_LOAD_PARAMS) APPVERSION_M = 1 APPVERSION_N = 0 -APPVERSION_P = 7 -APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)-rc1 +APPVERSION_P = 8 +APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) APPNAME = "Paraswap"