generated/stellar/change_trust_op.rb in stellar-base-0.29.0 vs generated/stellar/change_trust_op.rb in stellar-base-0.30.0
- old
+ new
@@ -5,18 +5,18 @@
# === xdr source ============================================================
#
# struct ChangeTrustOp
# {
-# Asset line;
+# ChangeTrustAsset line;
#
# // if limit is set to 0, deletes the trust line
# int64 limit;
# };
#
# ===========================================================================
module Stellar
class ChangeTrustOp < XDR::Struct
- attribute :line, Asset
+ attribute :line, ChangeTrustAsset
attribute :limit, Int64
end
end