Merge pull request #647 from clark800/cancellation-spec

BREAKING CHANGE: prepareOrderCancellation now takes orderCancellation specification instead of sequence
This commit is contained in:
Chris Clark
2015-11-23 13:14:00 -08:00
6 changed files with 21 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ All "prepare" methods have the same return type.
```javascript
const address = 'r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59';
const sequence = 123;
const orderCancellation = {orderSequence: 123};
return api.prepareOrderCancellation(address, sequence)
.then(prepared => {/* ... */});
```