Skip to content

Commit

Permalink
update the version to v1.2.3 unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
mapdev33 committed Mar 7, 2024
1 parent e4bbf6c commit 3f4ffb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/vm/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ func (c *transfer) Run(evm *EVM, contract *Contract, input []byte) ([]byte, erro
return nil, ErrInsufficientBalance
}

//evm.Context.Transfer(evm, from, to, value)
evm.Context.Transfer(evm, from, to, value)
}

return input, err
Expand Down
8 changes: 4 additions & 4 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 2 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
VersionMajor = 1 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 3 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
)

type VersionInfo struct {
Expand Down

0 comments on commit 3f4ffb1

Please sign in to comment.