generated/stellar/inflation_result_code.rb in stellar-base-0.0.1 vs generated/stellar/inflation_result_code.rb in stellar-base-0.0.2

- old
+ new

@@ -1,6 +1,6 @@ -# Automatically generated on 2015-04-07T10:52:07-07:00 +# Automatically generated on 2015-04-26T19:13:29-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ @@ -8,17 +8,17 @@ # enum InflationResultCode # { # // codes considered as "success" for the operation # INFLATION_SUCCESS = 0, # // codes considered as "failure" for the operation -# INFLATION_NOT_TIME = 1 +# INFLATION_NOT_TIME = -1 # }; # # =========================================================================== module Stellar class InflationResultCode < XDR::Enum member :inflation_success, 0 - member :inflation_not_time, 1 + member :inflation_not_time, -1 seal end end