Skip to content

Commit

Permalink
fix: change type of chain_id (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 authored Mar 23, 2023
1 parent e9b55f1 commit 584ce85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ type GreenfieldConfig struct {
PrivateKey string `json:"private_key"`
BlsPrivateKey string `json:"bls_private_key"`
NumberOfBlocksForFinality uint64 `json:"number_of_blocks_for_finality"`
ChainId uint16 `json:"chain_id"`
ChainId uint64 `json:"chain_id"`
StartHeight uint64 `json:"start_height"`
MonitorChannelList []uint8 `json:"monitor_channel_list"`
GasLimit uint64 `json:"gas_limit"`
Expand All @@ -53,7 +53,7 @@ type BSCConfig struct {
GasPrice uint64 `json:"gas_price"`
NumberOfBlocksForFinality uint64 `json:"number_of_blocks_for_finality"`
StartHeight uint64 `json:"start_height"`
ChainId uint16 `json:"chain_id"`
ChainId uint64 `json:"chain_id"`
}

type RelayConfig struct {
Expand Down

0 comments on commit 584ce85

Please sign in to comment.