From 33ab294eafc5fae6ae8d3fca4d8d5c40117c8d76 Mon Sep 17 00:00:00 2001 From: Nathan James Date: Wed, 15 May 2024 19:54:30 +0100 Subject: [PATCH] fix for setschedule docs --- .../eosio.system/include/eosio.system/eosio.system.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/eosio.system/include/eosio.system/eosio.system.hpp b/contracts/eosio.system/include/eosio.system/eosio.system.hpp index 1ed1a98..129b803 100644 --- a/contracts/eosio.system/include/eosio.system/eosio.system.hpp +++ b/contracts/eosio.system/include/eosio.system/eosio.system.hpp @@ -1512,9 +1512,9 @@ namespace eosiosystem { * Set the schedule for pre-determined annual rate changes. * * @param start_time - the time to start the schedule. - * @param annual_rate - the annual inflation rate of the core token supply. - * (eg. For 5% Annual inflation => annual_rate=500 - * For 1.5% Annual inflation => annual_rate=150 + * @param continuous_rate - the inflation or distribution rate of the core token supply. + * (eg. For 5% => 0.05 + * For 1.5% => 0.015) */ [[eosio::action]] void setschedule( const time_point_sec start_time, double continuous_rate );