Skip to content

Commit

Permalink
change ptn version
Browse files Browse the repository at this point in the history
  • Loading branch information
guo-li-hua committed Jul 5, 2021
1 parent 01a19ae commit 8814219
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion configure/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 9 // Patch version component of the current release
VersionPatch = 10 // Patch version component of the current release
VersionMeta = "release" // Version metadata to append to the version string
)

Expand Down
19 changes: 9 additions & 10 deletions contracts/scc/importsysccs.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ import (
"github.com/palletone/go-palletone/contracts/syscontract/sysconfigcc"
votev1 "github.com/palletone/go-palletone/contracts/syscontract/vote/v1"
votev2 "github.com/palletone/go-palletone/contracts/syscontract/vote/v2"
"github.com/palletone/go-palletone/contracts/syscontract/auctioncc"
)

var systemChaincodes = []*SystemChaincode{
Expand Down Expand Up @@ -211,15 +210,15 @@ var systemChaincodes = []*SystemChaincode{
InitArgs: [][]byte{},
Chaincode: &installcc.InstallMgr{},
},
{
Id: syscontract.AuctionContractAddress.Bytes(),
Enabled: true,
Name: "auction_sycc",
Path: "./auctioncc",
Version: "ptn001",
InitArgs: [][]byte{},
Chaincode: &auctioncc.AuctionMgr{},
},
//{
// Id: syscontract.AuctionContractAddress.Bytes(),
// Enabled: true,
// Name: "auction_sycc",
// Path: "./auctioncc",
// Version: "ptn001",
// InitArgs: [][]byte{},
// Chaincode: &auctioncc.AuctionMgr{},
//},
//TODO add other system chaincodes ...
}

Expand Down

0 comments on commit 8814219

Please sign in to comment.