From ba26645a5d086db4edb8fb2db934703bf71853c7 Mon Sep 17 00:00:00 2001 From: Holly Hodgkinson <1hhodgk1@gmail.com> Date: Mon, 24 Jun 2024 12:26:25 +0100 Subject: [PATCH] Minor changes, removal of Config struct --- target_chains/aptos/contracts/sources/pyth.move | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/target_chains/aptos/contracts/sources/pyth.move b/target_chains/aptos/contracts/sources/pyth.move index 939d72346c..79b82ad66e 100644 --- a/target_chains/aptos/contracts/sources/pyth.move +++ b/target_chains/aptos/contracts/sources/pyth.move @@ -30,13 +30,6 @@ module pyth::pyth { const PYTHNET_ACCUMULATOR_UPDATE_MAGIC: u64 = 1347305813; const ACCUMULATOR_UPDATE_WORMHOLE_VERIFICATION_MAGIC: u64 = 1096111958; - struct ParseConfig has copy, drop { - min_publish_time: u64, - max_publish_time: u64, - check_uniqueness: bool, - } - - // ----------------------------------------------------------------------------- // Initialisation functions @@ -1723,9 +1716,5 @@ module pyth::pyth_test { cleanup_test(burn_capability, mint_capability); } - - - - }