Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* jshint -W101, -W098 */ |
||
15 | it('test block by hash', function(cb) { |
||
16 | client.block("000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf").then(function(block) { |
||
17 | assert.ok(block['hash']); |
||
18 | assert.equal(block['hash'], '000000000000034a7dedef4a161fa058a2d67a173a90155f3a2fe6fc132e0ebf'); |
||
19 | |||
20 | cb(); |
||
21 | }) |
||
22 | .done(); |
||
23 | }); |
||
24 | |||
35 |