stellar-base 0.0.19 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 56f79358358d26e68027ea6b56550b0b580a9a5d
4
- data.tar.gz: bd47fe192b385a85305fee6368bb18b3f17e00a9
3
+ metadata.gz: b5ccdbf9c969e49fdac7bf759a71330a9f2b4b88
4
+ data.tar.gz: 941f08106de210e0607b0c66c05981b83c0cf519
5
5
  SHA512:
6
- metadata.gz: fd275cdcdea2c430ddcb61cf58beeb971349dbabb2b13f25c068610abff901fa717ff8d020383dab3dfd0d83467de7e3b7da3ceb058a027b4e4108299fce97e6
7
- data.tar.gz: 7527f920fa9448f8f6e73ac87b181b2b8bb6bf847fa1afb20a7019179aa5257c5d667668906ca6f2bfa2e429a76f9816fa83c8398fcb679e332386c1ddfd77b8
6
+ metadata.gz: 7fa06709f25ef7d48892e6db72ba6c5ac1e5ff9be05151613cfeb09cc1e24ee14dd4c44346a228f3ab26180789b5d467696171035ba48fc318b28675f2e781a8
7
+ data.tar.gz: 6eeb0145b27fe11c81972f9ac1cc76dc9272e2742245369679f254ad8d90133192c9178e0c958d1bb678e85de4f733ca93cbdbbcf533fb9c0fb81893d153a5ce
@@ -1,5 +1,5 @@
1
1
  module Stellar
2
2
  module Base
3
- VERSION = "0.0.19"
3
+ VERSION = "0.0.20"
4
4
  end
5
5
  end
@@ -183,10 +183,14 @@ module Stellar
183
183
  # @return [Stellar::Operation] the built operation, containing a
184
184
  # Stellar::SetOptionsOp body
185
185
  def self.set_options(attributes={})
186
- op = SetOptionsOp.new()
187
- op.set_flags = Stellar::AccountFlags.make_mask attributes[:set]
188
- op.clear_flags = Stellar::AccountFlags.make_mask attributes[:clear]
189
- op.thresholds = attributes[:thresholds]
186
+ op = SetOptionsOp.new()
187
+ op.set_flags = Stellar::AccountFlags.make_mask attributes[:set]
188
+ op.clear_flags = Stellar::AccountFlags.make_mask attributes[:clear]
189
+ op.master_weight = attributes[:master_weight]
190
+ op.low_threshold = attributes[:low_threshold]
191
+ op.med_threshold = attributes[:med_threshold]
192
+ op.high_threshold = attributes[:high_threshold]
193
+
190
194
  op.signer = attributes[:signer]
191
195
  op.home_domain = attributes[:home_domain]
192
196
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stellar-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Fleckenstein