Skip to content
This repository was archived by the owner on Dec 2, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository:
name: fabric-chaincode-evm
description: null
homepage: https://wiki.hyperledger.org/display/fabric
default_branch: master
default_branch: main
has_downloads: true
has_issues: false
has_projects: false
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Contributions Welcome!

This repository is part of the Fabric project.
Please consult [Fabric's CONTRIBUTING documentation](http://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html) for information on how to contribute to this repository.
Please consult [Fabric's CONTRIBUTING documentation](http://hyperledger-fabric.readthedocs.io/en/latest/CONTRIBUTING.html) for information on how to contribute to this repository.

We will follow [Fabric's Go Coding Guidelines](https://hyperledger-fabric.readthedocs.io/en/master/style-guides/go-style.html).
We will follow [Fabric's Go Coding Guidelines](https://hyperledger-fabric.readthedocs.io/en/main/style-guides/go-style.html).

<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>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ section.
This chaincode can be deployed like any other user chaincode to Hyperledger
Fabric. The chaincode has no instantiation arguments.

When installing, point to the EVMCC [main package](https://github.com/hyperledger/fabric-chaincode-evm/tree/master/evmcc). Below is an example of installation and
When installing, point to the EVMCC [main package](https://github.com/hyperledger/fabric-chaincode-evm/tree/main/evmcc). Below is an example of installation and
instantiation through the peer cli.
```
peer chaincode install -n evmcc -l golang -v 0 -p github.com/hyperledger/fabric-chaincode-evm/evmcc
Expand Down
5 changes: 2 additions & 3 deletions ci/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

name: $(SourceBranchName)-$(Date:yyyyMMdd)$(Rev:.rrr)
trigger:
- master
- main
pr:
- master
- main

variables:
GOPATH: $(Agent.BuildDirectory)/go
Expand Down Expand Up @@ -65,4 +65,3 @@ jobs:
displayName: Checkout Fabric Chaincode EVM Code
- script: make integration-test
displayName: Run Integration Tests