Skip to content

Commit 5ab8dd2

Browse files
committed
Fixed whitespaces at test/testnet-eth-test.js
1 parent 314081e commit 5ab8dd2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/testnet-eth-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
'use strict';
22
const assert = require('chai').assert;
33
const init = require('../.').init;
4-
describe('testnet eth', function () {
5-
xit('eth.getminedblocks', function (done) {
6-
var api = init('YourApiKeyToken', 'morden');
4+
describe('testnet eth', function() {
5+
xit('eth.getminedblocks', function(done){
6+
var api = init('YourApiKeyToken','morden');
77
//In testnet there are no mined blocks by this account
88
//reference - https://testnet.etherscan.io/api?module=account&action=getminedblocks&address=0x9dd134d14d1e65f84b706d6f205cd5b1cd03a46b&blocktype=blocks&apikey=YourApiKeyToken
99
// var txlist = api.account.getminedblocks('0x9dd134d14d1e65f84b706d6f205cd5b1cd03a46b');
1010
// will use other address instead
1111
var txlist = api.account.getminedblocks('0x3D6F8823Ad21CD299814B62D198d9001E67E20B3');
12-
txlist.then(function (res) {
12+
txlist.then(function(res){
1313
assert.ok(res);
1414
done();
1515
});

0 commit comments

Comments
 (0)