From e5a082a0f9a7411d02f78c60efeefce07d9da9d0 Mon Sep 17 00:00:00 2001 From: Javed Khan Date: Mon, 10 Jul 2023 07:32:28 -0700 Subject: [PATCH] testnet: update node rc, flags for arabica-9 (#157) * testnet: update node rc, flags for arabica-9 * go mod: bump go-cnc to 0.4.2-pre * testnet: bump celestia-node to v0.11.0-rc6 * txmgr: submit pfb - handle unexpected response code; bump fee * nit: typo * go mod: bump go-cnc to v0.4.2 * txmgr: submit pfb - handle unexpected response - check tx hash * txmgr: bump gas limit * txmgr: add additional height sanity check --- go.mod | 6 ++++-- go.sum | 4 ++-- ops-bedrock/docker-compose-testnet.yml | 6 +++--- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 67207858e737..dcfe8561bbbf 100644 --- a/go.mod +++ b/go.mod @@ -6,8 +6,10 @@ require ( github.com/BurntSushi/toml v1.3.2 github.com/btcsuite/btcd v0.23.3 github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 - github.com/celestiaorg/go-cnc v0.3.0 - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 + github.com/celestiaorg/go-cnc v0.4.2 + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 + github.com/docker/docker v20.10.24+incompatible + github.com/docker/go-connections v0.4.0 github.com/ethereum-optimism/go-ethereum-hdwallet v0.1.3 github.com/ethereum-optimism/superchain-registry/superchain v0.0.0-20231030223232-e16eae11e492 github.com/ethereum/go-ethereum v1.13.1 diff --git a/go.sum b/go.sum index 77df25a16155..a70d659b7a67 100644 --- a/go.sum +++ b/go.sum @@ -71,8 +71,8 @@ github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtE github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= -github.com/celestiaorg/go-cnc v0.4.1 h1:7fz8Y8HKKxE2dCp2m9Qlm+NoROxJWGCiKtcvaYp8iM8= -github.com/celestiaorg/go-cnc v0.4.1/go.mod h1:zYzvHudSd1iNPuHBMyvZ1YvWou5aT9JXgtch9Tkaf70= +github.com/celestiaorg/go-cnc v0.4.2 h1:7ixf3tevMB7Lvz2mbyRG0ZOK+8qoPm7wNhdgpi8VreU= +github.com/celestiaorg/go-cnc v0.4.2/go.mod h1:zYzvHudSd1iNPuHBMyvZ1YvWou5aT9JXgtch9Tkaf70= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/cp v0.1.0 h1:SE+dxFebS7Iik5LK0tsi1k9ZCxEaFX4AjQmoyA+1dJk= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= diff --git a/ops-bedrock/docker-compose-testnet.yml b/ops-bedrock/docker-compose-testnet.yml index d29812cd1002..5c951f2732a1 100644 --- a/ops-bedrock/docker-compose-testnet.yml +++ b/ops-bedrock/docker-compose-testnet.yml @@ -15,13 +15,13 @@ services: container_name: celestia-light-node user: root platform: "${PLATFORM}" - image: "ghcr.io/celestiaorg/celestia-node:v0.11.0-rc2" - command: celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway --gateway.addr da --gateway.port 26659 --p2p.network arabica + image: "ghcr.io/celestiaorg/celestia-node:v0.11.0-rc6" + command: celestia light start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway --gateway.addr da --gateway.port 26659 --gateway.deprecated-endpoints --p2p.network arabica environment: - NODE_TYPE=light - P2P_NETWORK=arabica volumes: - - $HOME/.celestia-light-arabica-8/:/home/celestia/.celestia-light-arabica-8/ + - $HOME/.celestia-light-arabica-9/:/home/celestia/.celestia-light-arabica-9/ ports: - "26657:26657" - "26659:26659"