-
Notifications
You must be signed in to change notification settings - Fork 216
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Separate "define" and "publish" for contract APIs, and allow deleting unpublished APIs #1322
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1322 +/- ##
===========================================
- Coverage 100.00% 99.98% -0.02%
===========================================
Files 312 314 +2
Lines 21266 21418 +152
===========================================
+ Hits 21266 21415 +149
- Misses 0 3 +3
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
} else if existing != nil { | ||
return wrapSendError(i18n.NewError(ctx, coremsgs.MsgNetworkNameExists)) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just realized that I missed a check for the interface to have been published first (ie need to add this one here too).
Signed-off-by: Andrew Richardson <andrew.richardson@kaleido.io>
Signed-off-by: Andrew Richardson <andrew.richardson@kaleido.io>
Signed-off-by: Andrew Richardson <andrew.richardson@kaleido.io>
Added one new commit to fix this, and rebased after merging all pre-requisite PRs. |
Part of the fix for #1220
In a chain with #1279 and #1321