-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fixing testsuite tests by upgrade to new fixtures and signatures
- Loading branch information
1 parent
64830cc
commit d3836f2
Showing
5 changed files
with
52 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
|
||
# Set environment variables | ||
export coins="10000000000stake,100000000000samoleans" | ||
export coinsV="5000000000stake" | ||
export REGEN_KEYRING_BACKEND=test | ||
export CHAINID=regen-local | ||
export TMCFG=~/.regen/config/config.toml | ||
export APPCFG=~/.regen/config/app.toml | ||
|
||
# Remove existing regen configuration | ||
rm -rf ~/.regen | ||
|
||
# Add a new key for the validator | ||
./build/regen keys add validator --keyring-backend test | ||
|
||
# Initialize the chain | ||
./build/regen init dev-val --chain-id $CHAINID | ||
|
||
# Add genesis account | ||
./build/regen genesis add-genesis-account validator --keyring-backend test $coins | ||
|
||
# Generate a genesis transaction | ||
./build/regen genesis gentx validator $coinsV --chain-id $CHAINID --keyring-backend test | ||
|
||
# Collect genesis transactions | ||
./build/regen genesis collect-gentxs | ||
|
||
# Validate genesis file | ||
./build/regen genesis validate-genesis | ||
|
||
# Modify configuration files | ||
perl -i -pe 's|timeout_commit = ".*?"|timeout_commit = "2s"|g' $TMCFG | ||
perl -i -pe 's|minimum-gas-prices = ""|minimum-gas-prices = "0stake"|g' $APPCFG | ||
|
||
# Start the node | ||
./build/regen start --api.enable true --grpc.address="0.0.0.0:9090" |