cardano_wallet 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cardano_wallet/shared.rb +2 -2
- data/lib/cardano_wallet/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c4ef984dbf796ca336b600e76893886c71143afe2e1e595213b811422583449
|
4
|
+
data.tar.gz: e5301c79329e5479d586da24699387bef0b51b2e0d13039a71205516987bfe55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
71
|
+
body: { cosigner => acc_pub_key }.to_json,
|
72
72
|
headers: { 'Content-Type' => 'application/json' })
|
73
73
|
end
|
74
74
|
end
|