Skip to content

Commit

Permalink
fix: use milliseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
izyak committed Jul 20, 2023
1 parent 565a94f commit 8256d0c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 3 additions & 1 deletion examples/demo/configs/chains/ibc-archway.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"sign-mode": "direct",
"ibc-handler-address":"--",
"broadcast-mode": "batch",
"block-timeout": ""
"block-timeout": "",
"start-height":0,
"block-interval": 6000
}
}

Expand Down
20 changes: 11 additions & 9 deletions examples/demo/configs/chains/ibc-icon.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"type": "icon",
"value": {
"chain-id": "ibc-icon",
"rpc-addr": "http://localhost:9082/api/v3/",
"timeout": "30s",
"keystore":"/Users/viveksharmapoudel/keystore/godWallet.json",
"password":"gochain",
"btp-network-id":2,
"icon-network-id":3,
"start-btp-height":0,
"ibc-handler-address":"cxfffe383e4780084e48e477935099b03193d952fe"
"chain-id": "ibc-icon",
"rpc-addr": "http://localhost:9082/api/v3/",
"timeout": "30s",
"keystore": "/Users/viveksharmapoudel/keystore/godWallet.json",
"password": "gochain",
"btp-network-id": 2,
"icon-network-id": 3,
"start-btp-height": 0,
"ibc-handler-address": "cxfffe383e4780084e48e477935099b03193d952fe",
"start-height": 0,
"block-interval": 2000
}
}
2 changes: 1 addition & 1 deletion relayer/common/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ var (
ArchwayModule = "archway"
TendermintLightClient = "tendermint"
IconLightClient = "iconclient"
ONE_HOUR = 60 * 60
ONE_HOUR = 60 * 60 * 1000
)

0 comments on commit 8256d0c

Please sign in to comment.