Skip to content

Commit a8a5539

Browse files
committedJan 24, 2019
Fix doc link
Fix variable error Change-Id: I24cae31cc3df080b8906812b81f63b15795dc6e5 Signed-off-by: BigManing <lingshui2008@qq.com>
1 parent 8a458b5 commit a8a5539

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ docs to learn how to make contributions to this exciting project.
99

1010
## Code of Conduct Guidelines <a name="conduct"></a>
1111

12-
See our [Code of Conduct Guidelines](../blob/master/CODE_OF_CONDUCT.md).
12+
See our [Code of Conduct Guidelines](./CODE_OF_CONDUCT.md).
1313

1414
## Maintainers <a name="maintainers"></a>
1515

16-
Should you have any questions or concerns, please reach out to one of the project's [Maintainers](../blob/master/MAINTAINERS.md).
16+
Should you have any questions or concerns, please reach out to one of the project's [Maintainers](./MAINTAINERS.md).
1717

1818
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

‎commercial-paper/organization/digibank/contract/lib/papercontract.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class CommercialPaperContract extends Contract {
111111
if (paper.isTrading()) {
112112
paper.setOwner(newOwner);
113113
} else {
114-
throw new Error('Paper ' + issuer + paperNumber + ' is not trading. Current state = ' + cp.getCurrentState());
114+
throw new Error('Paper ' + issuer + paperNumber + ' is not trading. Current state = ' + paper.getCurrentState());
115115
}
116116

117117
// Update the paper

0 commit comments

Comments
 (0)
Please sign in to comment.