cardano_wallet 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3e96ef68a97833180203b09137217a2e3667800f2eb13b2131505f93879a3c5e
4
- data.tar.gz: 2312bc7afae1647800d0e25e422cf811ee3c94d2d4d97ce45e9662f6dd4d8ccc
3
+ metadata.gz: 4c4ef984dbf796ca336b600e76893886c71143afe2e1e595213b811422583449
4
+ data.tar.gz: e5301c79329e5479d586da24699387bef0b51b2e0d13039a71205516987bfe55
5
5
  SHA512:
6
- metadata.gz: 60059be2b38590b8819879ae4c7433478289048db9d4b9a258520c74d8bb0d62e7b05693a1575d6c4bfed18e5b8385425960d2ee0f8bd7bdd3526d8b541c74da
7
- data.tar.gz: 22ae9e0ed677b5591c5e6ff1c9a27fc406eb0c7d7df18d73924bb8081d51614c2e9ee4b50f91379de6cffc4a4baf4e8e11b47352235488ea1c278ac70977dcaf
6
+ metadata.gz: d3993f7213a754bf4a84635f332771daba159a8fe7bd0f843b1a69ee8c8732ac948574a5511bd11b6f7c95a0ca17b5f47befe4fff1154cf3364a16dea3d42bb4
7
+ data.tar.gz: 7e622616a8ca9d661446150aeaa0afec89036a43d0c442f6bd16f94f5ce1a154b53f8b812ae5d46cd77e4c19cad4cf26609e5810e843e60ab268ba27ee606950
@@ -60,7 +60,7 @@ module CardanoWallet
60
60
  # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/patchSharedWalletInPayment
61
61
  def update_payment_script(wid, cosigner, acc_pub_key)
62
62
  self.class.patch("/shared-wallets/#{wid}/payment-script-template",
63
- body: { cosigner: cosigner, account_public_key: acc_pub_key }.to_json,
63
+ body: { cosigner => acc_pub_key }.to_json,
64
64
  headers: { 'Content-Type' => 'application/json' })
65
65
  end
66
66
 
@@ -68,7 +68,7 @@ module CardanoWallet
68
68
  # @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/patchSharedWalletInDelegation
69
69
  def update_delegation_script(wid, cosigner, acc_pub_key)
70
70
  self.class.patch("/shared-wallets/#{wid}/delegation-script-template",
71
- body: { cosigner: cosigner, account_public_key: acc_pub_key }.to_json,
71
+ body: { cosigner => acc_pub_key }.to_json,
72
72
  headers: { 'Content-Type' => 'application/json' })
73
73
  end
74
74
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CardanoWallet
4
- VERSION = '0.3.3'
4
+ VERSION = '0.3.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cardano_wallet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Stachyra