This commit is contained in:
Gav Wood 2016-12-15 22:46:36 +01:00
parent 7cac50601f
commit a6a8e431f5
No known key found for this signature in database
GPG Key ID: C49C1ACA1CC9B252

View File

@ -153,17 +153,17 @@ describe('api/format/output', () => {
max: 0x7b, max: 0x7b,
peers: [ peers: [
{ {
caps: ["par/1"], caps: ['par/1'],
id: "0x01", id: '0x01',
name: "Parity", name: 'Parity',
network: { network: {
localAddress: "10.0.0.1", localAddress: '10.0.0.1',
remoteAddress: "10.0.0.1" remoteAddress: '10.0.0.1'
}, },
protocols: { protocols: {
par: { par: {
difficulty: "0x0f", difficulty: '0x0f',
head: "0x02", head: '0x02',
version: 63 version: 63
} }
} }
@ -175,17 +175,17 @@ describe('api/format/output', () => {
max: new BigNumber(123), max: new BigNumber(123),
peers: [ peers: [
{ {
caps: ["par/1"], caps: ['par/1'],
id: "0x01", id: '0x01',
name: "Parity", name: 'Parity',
network: { network: {
localAddress: "10.0.0.1", localAddress: '10.0.0.1',
remoteAddress: "10.0.0.1" remoteAddress: '10.0.0.1'
}, },
protocols: { protocols: {
par: { par: {
difficulty: new BigNumber(15), difficulty: new BigNumber(15),
head: "0x02", head: '0x02',
version: 63 version: 63
} }
} }