bit_wallet 0.7.3 → 0.7.5
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/bit_wallet/account.rb +8 -1
- data/lib/bit_wallet/version.rb +1 -1
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_be_able_to_override_the_min_conf.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_default_to_the_config_min_conf.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_balance/should_return_the_balance_of_the_account.yml +8 -8
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_recent_transactions/should_default_to_list_10_transactions.yml +54 -54
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_recent_transactions/when_transaction_limit_is_6/should_list_the_6_most_recent_transactions.yml +42 -42
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/_to_is_a_BitWallet_Address/should_send_it_to_the_address_of_the_given_BitWallet_Address.yml +15 -15
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/account_does_not_have_enough_money/should_fail_with_the_InsufficientFunds_error.yml +12 -12
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_amount/should_send_money_to_the_given_address.yml +15 -15
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_send_many/should_send_the_amounts_of_money_to_the_specified_accounts.yml +18 -18
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/_total_received/should_return_the_total_amount_received_by_the_address.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/addresses/.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/should_be_assigned_that_name.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/should_have_a_default_name.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/on_initialization/when_the_account_name_already_exists/should_return_that_same_address.yml +4 -4
- data/spec/fixtures/vcr_cassettes/BitWallet_Account/wallet/.yml +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4e51e4645d4c00c947d90acfa4fc32e0322937a
|
4
|
+
data.tar.gz: d2e6a5d496be01e0bddc715f37781717fc5fa3e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06555df5b82185e8d94387b9859e339d8598881e2efd3aef3680c05b5856d5b9b6327d4b237e2dfefd23c97db1857497dd6d54a19a38349673f5652ed32a8c13
|
7
|
+
data.tar.gz: be6fe590a9497733dbb34eb375446b9fbb32e5bdeec6f9ee3f2bedef8a35279a95eaefa847f9154c453c857a86964e5299e5a2bb2819f07763d04699bb8120ed
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
# v0.7.5
|
2
|
+
|
3
|
+
- Fix bug with `Account#recent_transactions`
|
4
|
+
|
5
|
+
# v0.7.4
|
6
|
+
|
7
|
+
- `listtransactions` of blockchain.info returns a differently formatted result - work around it
|
8
|
+
|
1
9
|
# v0.7.3
|
2
10
|
|
3
11
|
- [#3](https://github.com/ramontayag/bit_wallet/issues/3): no longer fetch list of accounts during initialization
|
data/lib/bit_wallet/account.rb
CHANGED
@@ -44,7 +44,14 @@ module BitWallet
|
|
44
44
|
|
45
45
|
def recent_transactions(options={})
|
46
46
|
count = options.delete(:limit) || 10
|
47
|
-
|
47
|
+
# FIXME: come up with adapters to abstract the differences between
|
48
|
+
# bitcoind and blockchain.info API
|
49
|
+
api_result = client.listtransactions(self.name, count)
|
50
|
+
txs = api_result
|
51
|
+
if api_result.is_a?(Hash)
|
52
|
+
txs = api_result.with_indifferent_access.fetch(:transactions)
|
53
|
+
end
|
54
|
+
txs.map do |hash|
|
48
55
|
Transaction.new self.wallet, hash
|
49
56
|
end
|
50
57
|
end
|
data/lib/bit_wallet/version.rb
CHANGED
@@ -23,7 +23,7 @@ http_interactions:
|
|
23
23
|
message: OK
|
24
24
|
headers:
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Sat, 30 Aug 2014 12:34:53 +0000
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Content-Length:
|
@@ -35,7 +35,7 @@ http_interactions:
|
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: |
|
38
|
-
{"result":"
|
38
|
+
{"result":"miXfqZZm4KSmoWyCuA8zPLNVMiFTQ3X7n2","error":null,"id":"jsonrpc"}
|
39
39
|
http_version:
|
40
|
-
recorded_at:
|
41
|
-
recorded_with: VCR 2.
|
40
|
+
recorded_at: Sat, 30 Aug 2014 12:34:53 GMT
|
41
|
+
recorded_with: VCR 2.9.2
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
23
23
|
message: OK
|
24
24
|
headers:
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Sat, 30 Aug 2014 12:34:45 +0000
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Content-Length:
|
@@ -35,7 +35,7 @@ http_interactions:
|
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: |
|
38
|
-
{"result":"
|
38
|
+
{"result":"mjygs5YpADLxEfY5dn434LiGce7ZUawi8E","error":null,"id":"jsonrpc"}
|
39
39
|
http_version:
|
40
|
-
recorded_at:
|
41
|
-
recorded_with: VCR 2.
|
40
|
+
recorded_at: Sat, 30 Aug 2014 12:34:45 GMT
|
41
|
+
recorded_with: VCR 2.9.2
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
23
23
|
message: OK
|
24
24
|
headers:
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Sat, 30 Aug 2014 12:35:00 +0000
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Content-Length:
|
@@ -35,9 +35,9 @@ http_interactions:
|
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: |
|
38
|
-
{"result":"
|
38
|
+
{"result":"n1sbqYVKDjCvsjRjLmFszPb3DRm3rW719M","error":null,"id":"jsonrpc"}
|
39
39
|
http_version:
|
40
|
-
recorded_at:
|
40
|
+
recorded_at: Sat, 30 Aug 2014 12:35:00 GMT
|
41
41
|
- request:
|
42
42
|
method: post
|
43
43
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
@@ -61,7 +61,7 @@ http_interactions:
|
|
61
61
|
message: OK
|
62
62
|
headers:
|
63
63
|
Date:
|
64
|
-
-
|
64
|
+
- Sat, 30 Aug 2014 12:35:00 +0000
|
65
65
|
Connection:
|
66
66
|
- keep-alive
|
67
67
|
Content-Length:
|
@@ -75,7 +75,7 @@ http_interactions:
|
|
75
75
|
string: |
|
76
76
|
{"result":0.00000000,"error":null,"id":"jsonrpc"}
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
78
|
+
recorded_at: Sat, 30 Aug 2014 12:35:00 GMT
|
79
79
|
- request:
|
80
80
|
method: post
|
81
81
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
@@ -99,7 +99,7 @@ http_interactions:
|
|
99
99
|
message: OK
|
100
100
|
headers:
|
101
101
|
Date:
|
102
|
-
-
|
102
|
+
- Sat, 30 Aug 2014 12:35:00 +0000
|
103
103
|
Connection:
|
104
104
|
- keep-alive
|
105
105
|
Content-Length:
|
@@ -113,5 +113,5 @@ http_interactions:
|
|
113
113
|
string: |
|
114
114
|
{"result":0.00000000,"error":null,"id":"jsonrpc"}
|
115
115
|
http_version:
|
116
|
-
recorded_at:
|
117
|
-
recorded_with: VCR 2.
|
116
|
+
recorded_at: Sat, 30 Aug 2014 12:35:00 GMT
|
117
|
+
recorded_with: VCR 2.9.2
|
@@ -23,7 +23,7 @@ http_interactions:
|
|
23
23
|
message: OK
|
24
24
|
headers:
|
25
25
|
Date:
|
26
|
-
-
|
26
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Content-Length:
|
@@ -35,9 +35,9 @@ http_interactions:
|
|
35
35
|
body:
|
36
36
|
encoding: UTF-8
|
37
37
|
string: |
|
38
|
-
{"result":"
|
38
|
+
{"result":"n4qB3bohNS3A3HTfynmnKUdLbNB8THoz8u","error":null,"id":"jsonrpc"}
|
39
39
|
http_version:
|
40
|
-
recorded_at:
|
40
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
41
41
|
- request:
|
42
42
|
method: post
|
43
43
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
@@ -61,7 +61,7 @@ http_interactions:
|
|
61
61
|
message: OK
|
62
62
|
headers:
|
63
63
|
Date:
|
64
|
-
-
|
64
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
65
65
|
Connection:
|
66
66
|
- keep-alive
|
67
67
|
Content-Length:
|
@@ -73,15 +73,15 @@ http_interactions:
|
|
73
73
|
body:
|
74
74
|
encoding: UTF-8
|
75
75
|
string: |
|
76
|
-
{"result":"
|
76
|
+
{"result":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","error":null,"id":"jsonrpc"}
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
78
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
79
79
|
- request:
|
80
80
|
method: post
|
81
81
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
82
82
|
body:
|
83
83
|
encoding: UTF-8
|
84
|
-
string: '{"method":"sendfrom","params":["","
|
84
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
85
85
|
headers:
|
86
86
|
Accept:
|
87
87
|
- "*/*; q=0.5, application/xml"
|
@@ -99,7 +99,7 @@ http_interactions:
|
|
99
99
|
message: OK
|
100
100
|
headers:
|
101
101
|
Date:
|
102
|
-
-
|
102
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
103
103
|
Connection:
|
104
104
|
- keep-alive
|
105
105
|
Content-Length:
|
@@ -111,15 +111,15 @@ http_interactions:
|
|
111
111
|
body:
|
112
112
|
encoding: UTF-8
|
113
113
|
string: |
|
114
|
-
{"result":"
|
114
|
+
{"result":"c3dce5add712c3db2c4ef0b731befc75ead3d81d29b3d3d10b86fbf87e426388","error":null,"id":"jsonrpc"}
|
115
115
|
http_version:
|
116
|
-
recorded_at:
|
116
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
117
117
|
- request:
|
118
118
|
method: post
|
119
119
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
120
120
|
body:
|
121
121
|
encoding: UTF-8
|
122
|
-
string: '{"method":"sendfrom","params":["","
|
122
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
123
123
|
headers:
|
124
124
|
Accept:
|
125
125
|
- "*/*; q=0.5, application/xml"
|
@@ -137,7 +137,7 @@ http_interactions:
|
|
137
137
|
message: OK
|
138
138
|
headers:
|
139
139
|
Date:
|
140
|
-
-
|
140
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
141
141
|
Connection:
|
142
142
|
- keep-alive
|
143
143
|
Content-Length:
|
@@ -149,15 +149,15 @@ http_interactions:
|
|
149
149
|
body:
|
150
150
|
encoding: UTF-8
|
151
151
|
string: |
|
152
|
-
{"result":"
|
152
|
+
{"result":"4e88853d38be9edb02b59a90d02a7f79f01759994736424f413c6dd78ea49a50","error":null,"id":"jsonrpc"}
|
153
153
|
http_version:
|
154
|
-
recorded_at:
|
154
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
155
155
|
- request:
|
156
156
|
method: post
|
157
157
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
158
158
|
body:
|
159
159
|
encoding: UTF-8
|
160
|
-
string: '{"method":"sendfrom","params":["","
|
160
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
161
161
|
headers:
|
162
162
|
Accept:
|
163
163
|
- "*/*; q=0.5, application/xml"
|
@@ -175,7 +175,7 @@ http_interactions:
|
|
175
175
|
message: OK
|
176
176
|
headers:
|
177
177
|
Date:
|
178
|
-
-
|
178
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
179
179
|
Connection:
|
180
180
|
- keep-alive
|
181
181
|
Content-Length:
|
@@ -187,15 +187,15 @@ http_interactions:
|
|
187
187
|
body:
|
188
188
|
encoding: UTF-8
|
189
189
|
string: |
|
190
|
-
{"result":"
|
190
|
+
{"result":"45d46c8a96acbe10c62c12746bb544c5cf0f0aa2d3cd6696bd2caf1e97d87377","error":null,"id":"jsonrpc"}
|
191
191
|
http_version:
|
192
|
-
recorded_at:
|
192
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
193
193
|
- request:
|
194
194
|
method: post
|
195
195
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
196
196
|
body:
|
197
197
|
encoding: UTF-8
|
198
|
-
string: '{"method":"sendfrom","params":["","
|
198
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
199
199
|
headers:
|
200
200
|
Accept:
|
201
201
|
- "*/*; q=0.5, application/xml"
|
@@ -213,7 +213,7 @@ http_interactions:
|
|
213
213
|
message: OK
|
214
214
|
headers:
|
215
215
|
Date:
|
216
|
-
-
|
216
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
217
217
|
Connection:
|
218
218
|
- keep-alive
|
219
219
|
Content-Length:
|
@@ -225,15 +225,15 @@ http_interactions:
|
|
225
225
|
body:
|
226
226
|
encoding: UTF-8
|
227
227
|
string: |
|
228
|
-
{"result":"
|
228
|
+
{"result":"05168c0221f1843e5c088211c897fc49bb9bf9a31b7cd71b170c5d5bfb50f9c8","error":null,"id":"jsonrpc"}
|
229
229
|
http_version:
|
230
|
-
recorded_at:
|
230
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
231
231
|
- request:
|
232
232
|
method: post
|
233
233
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
234
234
|
body:
|
235
235
|
encoding: UTF-8
|
236
|
-
string: '{"method":"sendfrom","params":["","
|
236
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
237
237
|
headers:
|
238
238
|
Accept:
|
239
239
|
- "*/*; q=0.5, application/xml"
|
@@ -251,7 +251,7 @@ http_interactions:
|
|
251
251
|
message: OK
|
252
252
|
headers:
|
253
253
|
Date:
|
254
|
-
-
|
254
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
255
255
|
Connection:
|
256
256
|
- keep-alive
|
257
257
|
Content-Length:
|
@@ -263,15 +263,15 @@ http_interactions:
|
|
263
263
|
body:
|
264
264
|
encoding: UTF-8
|
265
265
|
string: |
|
266
|
-
{"result":"
|
266
|
+
{"result":"bd4f310232cdcf2615b6d56872e42a56abc94f69408f884f75c77ad88825e6f0","error":null,"id":"jsonrpc"}
|
267
267
|
http_version:
|
268
|
-
recorded_at:
|
268
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
269
269
|
- request:
|
270
270
|
method: post
|
271
271
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
272
272
|
body:
|
273
273
|
encoding: UTF-8
|
274
|
-
string: '{"method":"sendfrom","params":["","
|
274
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
275
275
|
headers:
|
276
276
|
Accept:
|
277
277
|
- "*/*; q=0.5, application/xml"
|
@@ -289,7 +289,7 @@ http_interactions:
|
|
289
289
|
message: OK
|
290
290
|
headers:
|
291
291
|
Date:
|
292
|
-
-
|
292
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
293
293
|
Connection:
|
294
294
|
- keep-alive
|
295
295
|
Content-Length:
|
@@ -301,15 +301,15 @@ http_interactions:
|
|
301
301
|
body:
|
302
302
|
encoding: UTF-8
|
303
303
|
string: |
|
304
|
-
{"result":"
|
304
|
+
{"result":"ef5d8f685f5119183d8ffd257f63d31d69b8e0f47e95293d002592c117c655d1","error":null,"id":"jsonrpc"}
|
305
305
|
http_version:
|
306
|
-
recorded_at:
|
306
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
307
307
|
- request:
|
308
308
|
method: post
|
309
309
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
310
310
|
body:
|
311
311
|
encoding: UTF-8
|
312
|
-
string: '{"method":"sendfrom","params":["","
|
312
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
313
313
|
headers:
|
314
314
|
Accept:
|
315
315
|
- "*/*; q=0.5, application/xml"
|
@@ -327,7 +327,7 @@ http_interactions:
|
|
327
327
|
message: OK
|
328
328
|
headers:
|
329
329
|
Date:
|
330
|
-
-
|
330
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
331
331
|
Connection:
|
332
332
|
- keep-alive
|
333
333
|
Content-Length:
|
@@ -339,15 +339,15 @@ http_interactions:
|
|
339
339
|
body:
|
340
340
|
encoding: UTF-8
|
341
341
|
string: |
|
342
|
-
{"result":"
|
342
|
+
{"result":"229e8f0b17a350ee98939d2d9dbecc2d5396cf5ae8cba836875e3e3432706ead","error":null,"id":"jsonrpc"}
|
343
343
|
http_version:
|
344
|
-
recorded_at:
|
344
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
345
345
|
- request:
|
346
346
|
method: post
|
347
347
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
348
348
|
body:
|
349
349
|
encoding: UTF-8
|
350
|
-
string: '{"method":"sendfrom","params":["","
|
350
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
351
351
|
headers:
|
352
352
|
Accept:
|
353
353
|
- "*/*; q=0.5, application/xml"
|
@@ -365,7 +365,7 @@ http_interactions:
|
|
365
365
|
message: OK
|
366
366
|
headers:
|
367
367
|
Date:
|
368
|
-
-
|
368
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
369
369
|
Connection:
|
370
370
|
- keep-alive
|
371
371
|
Content-Length:
|
@@ -377,15 +377,15 @@ http_interactions:
|
|
377
377
|
body:
|
378
378
|
encoding: UTF-8
|
379
379
|
string: |
|
380
|
-
{"result":"
|
380
|
+
{"result":"6d1a899a78b8abe636892a83a902683b18ee9ace6886c14f5625e67d283a559f","error":null,"id":"jsonrpc"}
|
381
381
|
http_version:
|
382
|
-
recorded_at:
|
382
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
383
383
|
- request:
|
384
384
|
method: post
|
385
385
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
386
386
|
body:
|
387
387
|
encoding: UTF-8
|
388
|
-
string: '{"method":"sendfrom","params":["","
|
388
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
389
389
|
headers:
|
390
390
|
Accept:
|
391
391
|
- "*/*; q=0.5, application/xml"
|
@@ -403,7 +403,7 @@ http_interactions:
|
|
403
403
|
message: OK
|
404
404
|
headers:
|
405
405
|
Date:
|
406
|
-
-
|
406
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
407
407
|
Connection:
|
408
408
|
- keep-alive
|
409
409
|
Content-Length:
|
@@ -415,15 +415,15 @@ http_interactions:
|
|
415
415
|
body:
|
416
416
|
encoding: UTF-8
|
417
417
|
string: |
|
418
|
-
{"result":"
|
418
|
+
{"result":"3572cd1b5a849f2f37c2482f74b3e672e32cf94bd7775a236d2f872a756eeb1d","error":null,"id":"jsonrpc"}
|
419
419
|
http_version:
|
420
|
-
recorded_at:
|
420
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
421
421
|
- request:
|
422
422
|
method: post
|
423
423
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
424
424
|
body:
|
425
425
|
encoding: UTF-8
|
426
|
-
string: '{"method":"sendfrom","params":["","
|
426
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
427
427
|
headers:
|
428
428
|
Accept:
|
429
429
|
- "*/*; q=0.5, application/xml"
|
@@ -441,7 +441,7 @@ http_interactions:
|
|
441
441
|
message: OK
|
442
442
|
headers:
|
443
443
|
Date:
|
444
|
-
-
|
444
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
445
445
|
Connection:
|
446
446
|
- keep-alive
|
447
447
|
Content-Length:
|
@@ -453,15 +453,15 @@ http_interactions:
|
|
453
453
|
body:
|
454
454
|
encoding: UTF-8
|
455
455
|
string: |
|
456
|
-
{"result":"
|
456
|
+
{"result":"0276123aa26f55f727c3f9b5b0f51754e7c058e6dd2d10c763a9394d6986bc60","error":null,"id":"jsonrpc"}
|
457
457
|
http_version:
|
458
|
-
recorded_at:
|
458
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
459
459
|
- request:
|
460
460
|
method: post
|
461
461
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
462
462
|
body:
|
463
463
|
encoding: UTF-8
|
464
|
-
string: '{"method":"sendfrom","params":["","
|
464
|
+
string: '{"method":"sendfrom","params":["","mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv",0.1,0],"id":"jsonrpc"}'
|
465
465
|
headers:
|
466
466
|
Accept:
|
467
467
|
- "*/*; q=0.5, application/xml"
|
@@ -479,7 +479,7 @@ http_interactions:
|
|
479
479
|
message: OK
|
480
480
|
headers:
|
481
481
|
Date:
|
482
|
-
-
|
482
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
483
483
|
Connection:
|
484
484
|
- keep-alive
|
485
485
|
Content-Length:
|
@@ -491,9 +491,9 @@ http_interactions:
|
|
491
491
|
body:
|
492
492
|
encoding: UTF-8
|
493
493
|
string: |
|
494
|
-
{"result":"
|
494
|
+
{"result":"c85881d1ac5e180b611b8cc12a0f0574b54c8ab17c31c1d8e8eec07918a29cf9","error":null,"id":"jsonrpc"}
|
495
495
|
http_version:
|
496
|
-
recorded_at:
|
496
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
497
497
|
- request:
|
498
498
|
method: post
|
499
499
|
uri: http://bitcoinrpc:thisisjustapasswordfortesting@localhost:19001/
|
@@ -517,7 +517,7 @@ http_interactions:
|
|
517
517
|
message: OK
|
518
518
|
headers:
|
519
519
|
Date:
|
520
|
-
-
|
520
|
+
- Sat, 30 Aug 2014 12:40:26 +0000
|
521
521
|
Connection:
|
522
522
|
- keep-alive
|
523
523
|
Content-Length:
|
@@ -529,7 +529,7 @@ http_interactions:
|
|
529
529
|
body:
|
530
530
|
encoding: UTF-8
|
531
531
|
string: |
|
532
|
-
{"result":[{"account":"1","address":"
|
532
|
+
{"result":[{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"4e88853d38be9edb02b59a90d02a7f79f01759994736424f413c6dd78ea49a50","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"45d46c8a96acbe10c62c12746bb544c5cf0f0aa2d3cd6696bd2caf1e97d87377","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"05168c0221f1843e5c088211c897fc49bb9bf9a31b7cd71b170c5d5bfb50f9c8","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"bd4f310232cdcf2615b6d56872e42a56abc94f69408f884f75c77ad88825e6f0","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"ef5d8f685f5119183d8ffd257f63d31d69b8e0f47e95293d002592c117c655d1","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"229e8f0b17a350ee98939d2d9dbecc2d5396cf5ae8cba836875e3e3432706ead","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"6d1a899a78b8abe636892a83a902683b18ee9ace6886c14f5625e67d283a559f","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"3572cd1b5a849f2f37c2482f74b3e672e32cf94bd7775a236d2f872a756eeb1d","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"0276123aa26f55f727c3f9b5b0f51754e7c058e6dd2d10c763a9394d6986bc60","walletconflicts":[],"time":1409402426,"timereceived":1409402426},{"account":"1","address":"mwohMeTg1tp4tFs2rFY9TUa9bBEBp5nhfv","category":"receive","amount":0.10000000,"confirmations":0,"txid":"c85881d1ac5e180b611b8cc12a0f0574b54c8ab17c31c1d8e8eec07918a29cf9","walletconflicts":[],"time":1409402426,"timereceived":1409402426}],"error":null,"id":"jsonrpc"}
|
533
533
|
http_version:
|
534
|
-
recorded_at:
|
535
|
-
recorded_with: VCR 2.
|
534
|
+
recorded_at: Sat, 30 Aug 2014 12:40:26 GMT
|
535
|
+
recorded_with: VCR 2.9.2
|