chore: Update default values of base and owner reserve to 1/0.2 (#6382)

Co-authored-by: Bart <bthomee@users.noreply.github.com>
This commit is contained in:
Vet
2026-05-06 13:19:57 +02:00
committed by Bart
parent 2df13ac6af
commit e646df5b7e
3 changed files with 5 additions and 5 deletions

View File

@@ -1258,7 +1258,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# account_reserve = 10000000 # 10 XRP
# account_reserve = 1000000 # 1 XRP
#
# owner_reserve = <drops>
#
@@ -1270,7 +1270,7 @@
# default. Don't change this without understanding the consequences.
#
# Example:
# owner_reserve = 2000000 # 2 XRP
# owner_reserve = 200000 # 0.2 XRP
#
#-------------------------------------------------------------------------------
#

View File

@@ -774,7 +774,7 @@ class AccountTx_test : public beast::unit_test::Suite
// All it takes is a large enough XRP payment to resurrect
// becky's account. Try too small a payment.
env(pay(alice, becky, drops(env.current()->fees().accountReserve(0)) - XRP(1)),
env(pay(alice, becky, drops(env.current()->fees().accountReserve(0)) - drops(1)),
Ter(tecNO_DST_INSUF_XRP));
env.close();

View File

@@ -51,10 +51,10 @@ struct FeeSetup
XRPAmount reference_fee{10};
/** The account reserve requirement in drops. */
XRPAmount account_reserve{10 * kDROPS_PER_XRP};
XRPAmount account_reserve{1'000'000}; // 1 XRP
/** The per-owned item reserve requirement in drops. */
XRPAmount owner_reserve{2 * kDROPS_PER_XRP};
XRPAmount owner_reserve{200'000}; // 0.2 XRP
/* (Remember to update the example cfg files when changing any of these
* values.) */