Skip to content

Commit

Permalink
upd version to 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xtaci committed Oct 11, 2023
1 parent 40dfd23 commit 8c1c00d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func (cred *Credential) MarshalText() ([]byte, error) {
msg.DepositDataRoot = hex.EncodeToString(signed_deposit_root[:])
msg.ForkVersion = hex.EncodeToString(cred.chain.GENESIS_FORK_VERSION[:])
msg.Eth2NetworkName = cred.chain.ETH2_NETWORK_NAME
msg.DepositCliVersion = "2.3.0"
msg.DepositCliVersion = DEPOSIT_CLI_VERSION

return json.Marshal([]*CompactDepositData{msg})
}
Expand Down
2 changes: 2 additions & 0 deletions settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ type BaseChainSetting struct {
GENESIS_FORK_VERSION [4]byte
}

const DEPOSIT_CLI_VERSION = "2.7.0"

const (
purpose = "12381"
coin_type = "3600"
Expand Down

0 comments on commit 8c1c00d

Please sign in to comment.