Class: XRBP::NodeStore::Fees
- Inherits:
-
Object
- Object
- XRBP::NodeStore::Fees
- Defined in:
- lib/xrbp/nodestore/fees.rb
Instance Attribute Summary collapse
-
#base ⇒ Object
readonly
FIXME where do these get updated in rippled?.
-
#increment ⇒ Object
readonly
FIXME where do these get updated in rippled?.
-
#reserve ⇒ Object
readonly
FIXME where do these get updated in rippled?.
-
#units ⇒ Object
readonly
FIXME where do these get updated in rippled?.
Instance Method Summary collapse
- #account_reserve(owner_count) ⇒ Object
-
#initialize ⇒ Fees
constructor
A new instance of Fees.
Constructor Details
#initialize ⇒ Fees
Returns a new instance of Fees.
7 8 9 10 11 12 |
# File 'lib/xrbp/nodestore/fees.rb', line 7 def initialize @base = 0 @units = 0 @reserve = 0 @increment = 0 end |
Instance Attribute Details
#base ⇒ Object (readonly)
FIXME where do these get updated in rippled?
5 6 7 |
# File 'lib/xrbp/nodestore/fees.rb', line 5 def base @base end |
#increment ⇒ Object (readonly)
FIXME where do these get updated in rippled?
5 6 7 |
# File 'lib/xrbp/nodestore/fees.rb', line 5 def increment @increment end |
#reserve ⇒ Object (readonly)
FIXME where do these get updated in rippled?
5 6 7 |
# File 'lib/xrbp/nodestore/fees.rb', line 5 def reserve @reserve end |
#units ⇒ Object (readonly)
FIXME where do these get updated in rippled?
5 6 7 |
# File 'lib/xrbp/nodestore/fees.rb', line 5 def units @units end |