Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ public interface IVerifierWriter {
*
* @param ptcTrustRoot {@link PTCTrustRoot}
*/
void updatePTCTrustRoot(PTCTrustRoot ptcTrustRoot);
default void updatePTCTrustRoot(PTCTrustRoot ptcTrustRoot) {
throw new UnsupportedOperationException(
"updatePTCTrustRoot is not supported in BBC V0"
);
};

/**
* Add raw <b>Third-Party Blockchain Trust Anchor</b>
Expand Down