mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
29 lines
816 B
Markdown
29 lines
816 B
Markdown
---
|
|
html: test-amendments.html
|
|
parent: use-stand-alone-mode.html # "Testing and Auditing"
|
|
seo:
|
|
description: You can test proposed amendments before they're enabled on the network.
|
|
labels:
|
|
- Blockchain
|
|
---
|
|
# Test Amendments
|
|
|
|
|
|
You can test how `rippled` behaves before proposed amendments are fully enabled on the production network. Since other members of the consensus network won't have the feature enabled, run your server in stand-alone mode.
|
|
|
|
{% admonition type="warning" name="Caution" %}This is intended for development purposes only.{% /admonition %}
|
|
|
|
To forcibly enable a feature, add a `[features]` stanza with amendment short names to your `rippled.cfg` file. Each amendment needs its own line.
|
|
|
|
{% tabs %}
|
|
|
|
{% tab label="Example" %}
|
|
```
|
|
[features]
|
|
MultiSign
|
|
TrustSetAuth
|
|
```
|
|
{% /tab %}
|
|
|
|
{% /tabs %}
|