Skip to content

Commit

Permalink
change e2etest --> smoketest; change Signet chain id as 18333
Browse files Browse the repository at this point in the history
  • Loading branch information
ws4charlie committed Sep 18, 2024
1 parent 041f548 commit 71f2f99
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/zetae2e/config/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ rpcs:
evm: "http://localhost:8545"
bitcoin:
host: "localhost:18443"
user: "e2etest"
user: "smoketest"
pass: "123"
http_post_mode: true
disable_tls: true
Expand Down
2 changes: 1 addition & 1 deletion cmd/zetae2e/config/localnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ rpcs:
evm: "http://eth:8545"
bitcoin:
host: "bitcoin:18443"
user: "e2etest"
user: "smoketest"
pass: "123"
http_post_mode: true
disable_tls: true
Expand Down
2 changes: 1 addition & 1 deletion contrib/localnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ services:
-regtest=1
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcauth=e2etest:63acf9b8dccecce914d85ff8c044b78b$$5892f9bbc84f4364e79f0970039f88bdd823f168d4acc76099ab97b14a766a99
-rpcauth=smoketest:63acf9b8dccecce914d85ff8c044b78b$$5892f9bbc84f4364e79f0970039f88bdd823f168d4acc76099ab97b14a766a99
-txindex=1

solana:
Expand Down
2 changes: 1 addition & 1 deletion e2e/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func DefaultConfig() Config {
EVM: "http://eth:8545",
Bitcoin: BitcoinRPC{
Host: "bitcoin:18443",
User: "e2etest",
User: "smoketest",
Pass: "123",
HTTPPostMode: true,
DisableTLS: true,
Expand Down
2 changes: 1 addition & 1 deletion pkg/chains/chains.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ var (

BitcoinSignetTestnet = Chain{
ChainName: ChainName_btc_signet_testnet,
ChainId: 18334,
ChainId: 18333,
Network: Network_btc,
NetworkType: NetworkType_testnet,
Vm: Vm_no_vm,
Expand Down
2 changes: 1 addition & 1 deletion zetaclient/config/config_chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func New(setDefaults bool) Config {
// bitcoinConfigRegnet contains Bitcoin config for regnet
func bitcoinConfigRegnet() BTCConfig {
return BTCConfig{
RPCUsername: "e2etest",
RPCUsername: "smoketest", // smoketest is the previous name for E2E test, we keep this name for compatibility between client versions in upgrade test
RPCPassword: "123",
RPCHost: "bitcoin:18443",
RPCParams: "regtest",
Expand Down

0 comments on commit 71f2f99

Please sign in to comment.