Skip to content

Commit

Permalink
fix: add totalBalance to address test
Browse files Browse the repository at this point in the history
  • Loading branch information
classicalliu committed Sep 3, 2019
1 parent af4ebcd commit 90184aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/neuron-wallet/tests/database/address/dao.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ describe('Address Dao tests', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand All @@ -30,6 +31,7 @@ describe('Address Dao tests', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand All @@ -45,6 +47,7 @@ describe('Address Dao tests', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand Down
3 changes: 3 additions & 0 deletions packages/neuron-wallet/tests/services/address.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ describe('Key tests with db', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand All @@ -69,6 +70,7 @@ describe('Key tests with db', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand All @@ -84,6 +86,7 @@ describe('Key tests with db', () => {
sentBalance: '0',
pendingBalance: '0',
balance: '0',
totalBalance: '0',
blake160: '0x36c329ed630d6ce750712a477543672adab57f4c',
version: AddressVersion.Testnet,
}
Expand Down

0 comments on commit 90184aa

Please sign in to comment.