From dbc1fcd9ccb43a62ac70a310c145a93fb43e9705 Mon Sep 17 00:00:00 2001 From: Jason Matthyser Date: Thu, 27 Jun 2024 19:55:06 +0200 Subject: [PATCH 1/2] docs: update governor docs to reflect reset-release-timer change --- docs/governor.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/governor.md b/docs/governor.md index 837206fe82..db2bc76333 100644 --- a/docs/governor.md +++ b/docs/governor.md @@ -72,10 +72,12 @@ guardiand admin governor-drop-pending-vaa "emitted_chain_ID/address/sequence_num **Warning:** *Dropping a VAA should only be used in the context of confirmed fraud that directly affects the security of the Wormhole network. A super minority of Guardians are required to effectively censor a VAA.* ### Resetting Release Timer -To reset the release timer for a specified VAA to `maxEnqueuedTimeInHours` from the current time, Guardians can run the `governor-reset-release-timer` admin command as follows: +Guardians can reset the release timer to a specified number of days, from the current time, using the `governer-reset-release-timer` admin command as follows: ```bash -guardiand admin governor-reset-release-timer "emitted_chain_ID/address/sequence_number" --socket /path/to/admin.sock +guardiand admin governor-reset-release-timer "emitted_chain_ID/address/sequence_number" "number of days" --socket /path/to/admin.sock ``` +If the number of days is omitted, the command will reset the release timer to 24 hours from the current time. The number of days is capped to 7. + **Warning:** *Resetting a VAA should only be used in the context of needing more time to confirm fraud that directly affects the security of the Wormhole network. A super minority of Guardians are required to reset the timer for a given VAA.* From d47737d95c6d3827154fb14cd6ab9b5d38a01561 Mon Sep 17 00:00:00 2001 From: Jason Matthyser Date: Fri, 28 Jun 2024 04:54:38 +0200 Subject: [PATCH 2/2] docs: fix spelling mistake in governor docs --- docs/governor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/governor.md b/docs/governor.md index db2bc76333..b1fde6134c 100644 --- a/docs/governor.md +++ b/docs/governor.md @@ -72,7 +72,7 @@ guardiand admin governor-drop-pending-vaa "emitted_chain_ID/address/sequence_num **Warning:** *Dropping a VAA should only be used in the context of confirmed fraud that directly affects the security of the Wormhole network. A super minority of Guardians are required to effectively censor a VAA.* ### Resetting Release Timer -Guardians can reset the release timer to a specified number of days, from the current time, using the `governer-reset-release-timer` admin command as follows: +Guardians can reset the release timer to a specified number of days, from the current time, using the `governor-reset-release-timer` admin command as follows: ```bash guardiand admin governor-reset-release-timer "emitted_chain_ID/address/sequence_number" "number of days" --socket /path/to/admin.sock