-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbitclient.js
50 lines (26 loc) · 946 Bytes
/
bitclient.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var co = require('co');
var httpclient = require('./bitcoindservice');
/*(co( function * () {
let content = yield httpclient.httpget("http://www.hao123.com");
console.info(content);
}
));*/
/*co((function * () {
let content = yield httpclient.httpget("http://www.hao123.com");
console.info(content);
})())*/
/*(co( function * () {
let content = yield httpclient.httppostsimple("http://localhost/eshowcm1/index.php/m/nodeposttest",{a:'aaaa',b:'bbbbbbb'})
console.info(content);
}
));*/
(co( function * () {
let content = yield httpclient.bithttppost("http://192.168.23.212", 33133 , {"jsonrpc": "1.0", "id":"curltest", "method": "getblockchaininfo", "params": [] },'root','111111' )
console.info(content);
}
));
//注册异常处理器
process.on('unhandledRejection', function (err) {
console.error(err.stack);
});
process.on(`uncaughtException`, console.error);