From 9cd2fcf1a3ab42c1dbd972e7b3da1eb964735016 Mon Sep 17 00:00:00 2001 From: ymekuria Date: Thu, 27 Jun 2024 01:22:22 -0600 Subject: [PATCH] feat(actions-and-reducers.mdx): update getActions description --- .../writing-a-zkapp/feature-overview/actions-and-reducer.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx b/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx index fe0046a18..91390c34b 100644 --- a/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx +++ b/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx @@ -118,7 +118,7 @@ this.reducer.reduce( ``` -The `getActions` function retrieves a list of previously emitted actions from an archive node: +The `getActions` function retrieves a list of previously emitted actions: ```ts let pendingActions = this.reducer.getActions({ fromActionState?: Field, endActionState?: Field }): MerkleList>;