diff --git a/AccountDelete__test_8cpp_source.html b/AccountDelete__test_8cpp_source.html index 75db374219..61b6b2f50f 100644 --- a/AccountDelete__test_8cpp_source.html +++ b/AccountDelete__test_8cpp_source.html @@ -586,16 +586,16 @@ $(function() {
515 
516  // All it takes is a large enough XRP payment to resurrect
517  // becky's account. Try too small a payment.
-
518  env(pay(alice, becky, XRP(19)), ter(tecNO_DST_INSUF_XRP));
+
518  env(pay(alice, becky, XRP(9)), ter(tecNO_DST_INSUF_XRP));
519  env.close();
520 
521  // Actually resurrect becky's account.
-
522  env(pay(alice, becky, XRP(20)));
+
522  env(pay(alice, becky, XRP(10)));
523  env.close();
524 
525  // becky's account root should be back.
526  BEAST_EXPECT(env.closed()->exists(beckyAcctKey));
-
527  BEAST_EXPECT(env.balance(becky) == XRP(20));
+
527  BEAST_EXPECT(env.balance(becky) == XRP(10));
528 
529  // becky's resurrected account can be the destination of alice's
530  // PayChannel.
@@ -612,7 +612,7 @@ $(function() {
541  env(payChanClaim());
542  env.close();
543 
-
544  BEAST_EXPECT(env.balance(becky) == XRP(20) + payChanXRP);
+
544  BEAST_EXPECT(env.balance(becky) == XRP(10) + payChanXRP);
545  }
546 
547  void
diff --git a/AccountTx__test_8cpp_source.html b/AccountTx__test_8cpp_source.html index c5ab5b6f67..f4b025ae64 100644 --- a/AccountTx__test_8cpp_source.html +++ b/AccountTx__test_8cpp_source.html @@ -618,7 +618,7 @@ $(function() {
547 
548  // All it takes is a large enough XRP payment to resurrect
549  // becky's account. Try too small a payment.
-
550  env(pay(alice, becky, XRP(19)), ter(tecNO_DST_INSUF_XRP));
+
550  env(pay(alice, becky, XRP(9)), ter(tecNO_DST_INSUF_XRP));
551  env.close();
552 
553  // Actually resurrect becky's account.
diff --git a/FeeVote_8h_source.html b/FeeVote_8h_source.html index 44a7a63904..741a1cc4fd 100644 --- a/FeeVote_8h_source.html +++ b/FeeVote_8h_source.html @@ -108,9 +108,9 @@ $(function() {
44 
46  static constexpr FeeUnit32 reference_fee_units{10};
47 
-
49  XRPAmount account_reserve{20 * DROPS_PER_XRP};
+
49  XRPAmount account_reserve{10 * DROPS_PER_XRP};
50 
-
52  XRPAmount owner_reserve{5 * DROPS_PER_XRP};
+
52  XRPAmount owner_reserve{2 * DROPS_PER_XRP};
53  };
54 
55  virtual ~FeeVote() = default;
diff --git a/FeeVote__test_8cpp_source.html b/FeeVote__test_8cpp_source.html index 115a876d20..9b4735f8ca 100644 --- a/FeeVote__test_8cpp_source.html +++ b/FeeVote__test_8cpp_source.html @@ -105,8 +105,8 @@ $(function() {
34  Section config;
35  auto setup = setup_FeeVote(config);
36  BEAST_EXPECT(setup.reference_fee == 10);
-
37  BEAST_EXPECT(setup.account_reserve == 20 * DROPS_PER_XRP);
-
38  BEAST_EXPECT(setup.owner_reserve == 5 * DROPS_PER_XRP);
+
37  BEAST_EXPECT(setup.account_reserve == 10 * DROPS_PER_XRP);
+
38  BEAST_EXPECT(setup.owner_reserve == 2 * DROPS_PER_XRP);
39  }
40  {
41  Section config;
@@ -128,8 +128,8 @@ $(function() {
57  // Illegal values are ignored, and the defaults left unchanged
58  auto setup = setup_FeeVote(config);
59  BEAST_EXPECT(setup.reference_fee == 10);
-
60  BEAST_EXPECT(setup.account_reserve == 20 * DROPS_PER_XRP);
-
61  BEAST_EXPECT(setup.owner_reserve == 5 * DROPS_PER_XRP);
+
60  BEAST_EXPECT(setup.account_reserve == 10 * DROPS_PER_XRP);
+
61  BEAST_EXPECT(setup.owner_reserve == 2 * DROPS_PER_XRP);
62  }
63  {
64  Section config;
@@ -158,8 +158,8 @@ $(function() {
87  // Illegal values are ignored, and the defaults left unchanged
88  auto setup = setup_FeeVote(config);
89  BEAST_EXPECT(setup.reference_fee == 10);
-
90  BEAST_EXPECT(setup.account_reserve == 20 * DROPS_PER_XRP);
-
91  BEAST_EXPECT(setup.owner_reserve == 5 * DROPS_PER_XRP);
+
90  BEAST_EXPECT(setup.account_reserve == 10 * DROPS_PER_XRP);
+
91  BEAST_EXPECT(setup.owner_reserve == 2 * DROPS_PER_XRP);
92  }
93  }
94 
diff --git a/structripple_1_1FeeVote_1_1Setup.html b/structripple_1_1FeeVote_1_1Setup.html index 60c95d51d1..363c4b1f3e 100644 --- a/structripple_1_1FeeVote_1_1Setup.html +++ b/structripple_1_1FeeVote_1_1Setup.html @@ -104,10 +104,10 @@ Public Attributes XRPAmount reference_fee {10}  The cost of a reference transaction in drops. More...
  -XRPAmount account_reserve {20 * DROPS_PER_XRP} +XRPAmount account_reserve {10 * DROPS_PER_XRP}  The account reserve requirement in drops. More...
  -XRPAmount owner_reserve {5 * DROPS_PER_XRP} +XRPAmount owner_reserve {2 * DROPS_PER_XRP}  The per-owned item reserve requirement in drops. More...
  @@ -174,7 +174,7 @@ Static Public Attributes
- +
XRPAmount ripple::FeeVote::Setup::account_reserve {20 * DROPS_PER_XRP}XRPAmount ripple::FeeVote::Setup::account_reserve {10 * DROPS_PER_XRP}
@@ -192,7 +192,7 @@ Static Public Attributes
- +
XRPAmount ripple::FeeVote::Setup::owner_reserve {5 * DROPS_PER_XRP}XRPAmount ripple::FeeVote::Setup::owner_reserve {2 * DROPS_PER_XRP}