Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2 implementation using fabric-protos-go-apiv2 #108

Merged
merged 2 commits into from
Jun 18, 2024

Commits on Jun 8, 2024

  1. v2 implementation using fabric-protos-go-apiv2

    The v2 implementation retains wire-level compatibility with Fabric but
    does include the following breaking changes:
    
    - Chaincode implementation that make direct use of fabric-protos-go will
      experience protocol buffer namespace conflicts (as described in
      https://protobuf.dev/reference/go/faq/). Any use of fabric-protos-go
      must be replaced by fabric-protos-go-apiv2.
    - The Chaincode interface and Stub now use only pointers to protocol buffer
      messages in their API. Chaincode implementation must provide matching
      Init and Invoke methods.
    
    Signed-off-by: Mark S. Lewis <[email protected]>
    bestbeforetoday committed Jun 8, 2024
    Configuration menu
    Copy the full SHA
    74b77c1 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Remove deprecated shimtest from v2 implementation

    Signed-off-by: Mark S. Lewis <[email protected]>
    bestbeforetoday committed Jun 9, 2024
    Configuration menu
    Copy the full SHA
    fc83952 View commit details
    Browse the repository at this point in the history