ŌHARA Kazutaka

Results 6 issues of ŌHARA Kazutaka

In p14: _Testing Get-IOUs Endpoint_ of `Module 10 - Plugins and APIs.pdf` , it is instructed to use `sh build/nodes/runnodes` to run the nodes on Unix machines. It fails with...

In excercise of `IOUContract.kt`, I had erroneously ignored paid amount on settlement contract, i.e. ~~~~ // wrong val amountOutstanding = inputIou.amount // correct val amountOutstanding = inputIou.amount - inputIou.paid ~~~~...

Solutions should be removed from the template such that the trainees could solve them by their own. #20

In Module 10 of https://github.com/corda/corda-training-materials , the trainee or the reader is requested to implement `getIOUs()` and `issueIOU()` for practice, however they are already implemented or the whole solutions are...

https://github.com/corda/corda-training-template/blob/9adee329f4b616ecac7c393582c09bca233a798c/kotlin-source/src/main/kotlin/net/corda/training/flow/IOUSettleFlow.kt#L49-L52 In the case of full settlement, the transaction must not contain an IOUState in output, therefore the code above produces an error. The check should be removed as in...