Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/535 Settlement Transfer Abort #213

Merged
merged 1 commit into from
Nov 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions seeds/settlementState.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ const settlementStates = [
'description': 'When all outstanding accounts are SETTLED, the entire Settlement is moved to SETTLED.'
},
{
'settlementStateId': 'NOT_SETTLED',
'enumeration': 'NOT_SETTLED',
'settlementStateId': 'ABORTED',
'enumeration': 'ABORTED',
'description': 'Final state when the settlement is not possible.'
}
]
Expand Down
4 changes: 2 additions & 2 deletions seeds/settlementWindow1State.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ const settlementWindowStates = [
'description': 'The Hub Operator/Settlement Bank has confirmed that all the participants that engaged in the settlement window have now settled their payments in accordance with the net settlement report.'
},
{
'settlementWindowStateId': 'NOT_SETTLED',
'enumeration': 'NOT_SETTLED',
'settlementWindowStateId': 'ABORTED',
'enumeration': 'ABORTED',
'description': 'Window returned to this state when the settlement was not possible. This window may now be included in a future settlement.'
}
]
Expand Down