> For the complete documentation index, see [llms.txt](https://docs.bancor.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bancor.network/developer-guides/read-functions/rewards/auto-compounding-rewards/isprogrampaused.md).

# isProgramPaused()

### Function isProgramPaused()

{% code title="AutoCompoundingRewards.sol" %}

```javascript
 function isProgramPaused(Token pool) external view returns (bool)
```

{% endcode %}

This function is used to check if a specific rewards program is currently paused.

### Function Arguments

| Name | Type    | Description                        |
| ---- | ------- | ---------------------------------- |
| pool | address | The contract address of the token. |

### Return Variables

This function returns a boolean indicating if the rewards program is currently paused.&#x20;

<table><thead><tr><th>Variable Type</th><th width="420">Returns</th></tr></thead><tbody><tr><td>bool</td><td><strong>True:</strong> Rewards program is paused.<br><strong>False:</strong> Rewards program is not paused. </td></tr></tbody></table>
