> ## Documentation Index
> Fetch the complete documentation index at: https://base-a060aa97-docs-add-b20-spec.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# IB20Asset.cancelScheduledMultiplier

> Generated B20 reference for cancelScheduledMultiplier().

[Related concept](/base-chain/specs/upgrades/beryl/b20/specification/concepts/variants-asset-vs-stablecoin)

## Signature

```solidity theme={null}
function cancelScheduledMultiplier() external;
```

| Field               | Value                         |
| ------------------- | ----------------------------- |
| Selector            | `0xc4b1e3e7`                  |
| Canonical signature | `cancelScheduledMultiplier()` |

## Description

Cancels the single live pending update, restoring the no-pending state
(`effectiveAt` resets to 0).
Dev: Reverts with `AccessControlUnauthorizedAccount` when the caller does not hold `OPERATOR_ROLE`.
Dev: Reverts with `NoScheduledMultiplier` when there is no live pending update.

## Access control

`OPERATOR_ROLE` gates this Asset call.

## Policy interaction

No direct policy interaction.

## Example

```solidity theme={null}
IB20Asset(target).cancelScheduledMultiplier();
```

## Related

* [IB20Asset reference](/base-chain/specs/upgrades/beryl/b20/specification/reference/interfaces/IB20Asset)
* [Constants & addresses](/base-chain/specs/upgrades/beryl/b20/specification/reference/constants-and-addresses)
