generated/stellar/set_options_op.rb in stellar-base-0.0.3 vs generated/stellar/set_options_op.rb in stellar-base-0.0.4
- old
+ new
@@ -1,6 +1,6 @@
-# Automatically generated on 2015-04-26T19:13:29-07:00
+# Automatically generated on 2015-05-07T07:56:23-07:00
# DO NOT EDIT or your changes may be overwritten
require 'xdr'
# === xdr source ============================================================
@@ -12,10 +12,12 @@
# uint32* clearFlags; // which flags to clear
# uint32* setFlags; // which flags to set
#
# Thresholds* thresholds; // update the thresholds for the account
#
+# string32* homeDomain; // sets the home domain
+#
# // Add, update or remove a signer for the account
# // signer is deleted if the weight is 0
# Signer* signer;
# };
#
@@ -24,8 +26,9 @@
class SetOptionsOp < XDR::Struct
attribute :inflation_dest, XDR::Option[AccountID]
attribute :clear_flags, XDR::Option[Uint32]
attribute :set_flags, XDR::Option[Uint32]
attribute :thresholds, XDR::Option[Thresholds]
+ attribute :home_domain, XDR::Option[String32]
attribute :signer, XDR::Option[Signer]
end
end