Add commitFee to dummy data

parent 247853e0
......@@ -144,6 +144,7 @@ store.channels = [...Array(4)].map(() => ({
capacity: 2005000,
localBalance: 1990000,
remoteBalance: 10000,
commitFee: 0,
channelPoint:
'3511ae8a52c97d957eaf65f828504e68d0991f0276adff94c6ba91c7f6cd4275',
active: true,
......@@ -157,6 +158,7 @@ store.pendingChannels = [...Array(6)].map((x, i) => ({
capacity: 1005000,
localBalance: 600000,
remoteBalance: 400000,
commitFee: 0,
channelPoint:
'3511ae8a52c97d957eaf65f828504e68d0991f0276adff94c6ba91c7f6cd4275',
status: i % 2 === 0 ? 'pending-closing' : 'pending-open',
......
......@@ -350,6 +350,7 @@ store.channels = [...Array(4)].map((x, i) => ({
capacity: 2005000,
localBalance: 1990000,
remoteBalance: 10000,
commitFee: 0,
channelPoint:
'3511ae8a52c97d957eaf65f828504e68d0991f0276adff94c6ba91c7f6cd4275',
active: i % 2 === 0 ? true : false,
......@@ -363,6 +364,7 @@ store.pendingChannels = [...Array(6)].map((x, i) => ({
capacity: 1005000,
localBalance: 600000,
remoteBalance: 400000,
commitFee: 0,
channelPoint:
'3511ae8a52c97d957eaf65f828504e68d0991f0276adff94c6ba91c7f6cd4275',
status: i % 2 === 0 ? 'pending-closing' : 'pending-open',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment