Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Scitz0 authored and rdlrt committed Aug 26, 2024
1 parent 9f801fc commit 7366184
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion files/configs/guild/db-sync-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"governance": "enable",
"json_type": "text",
"offchain_pool_data": "enable",
"pool_stat": "enable",
"pool_stats": "enable",
"tx_cbor": "enable"
},
"minSeverity": "Info",
Expand Down
2 changes: 1 addition & 1 deletion files/configs/mainnet/db-sync-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"governance": "enable",
"json_type": "text",
"offchain_pool_data": "enable",
"pool_stat": "enable",
"pool_stats": "enable",
"tx_cbor": "enable"
},
"minSeverity": "Info",
Expand Down
2 changes: 1 addition & 1 deletion files/configs/preprod/db-sync-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"governance": "enable",
"json_type": "text",
"offchain_pool_data": "enable",
"pool_stat": "enable",
"pool_stats": "enable",
"tx_cbor": "enable"
},
"minSeverity": "Info",
Expand Down
2 changes: 1 addition & 1 deletion files/configs/preview/db-sync-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"governance": "enable",
"json_type": "text",
"offchain_pool_data": "enable",
"pool_stat": "enable",
"pool_stats": "enable",
"tx_cbor": "enable"
},
"minSeverity": "Info",
Expand Down
2 changes: 1 addition & 1 deletion files/configs/sanchonet/db-sync-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"governance": "enable",
"json_type": "text",
"offchain_pool_data": "enable",
"pool_stat": "enable",
"pool_stats": "enable",
"tx_cbor": "enable"
},
"minSeverity": "Info",
Expand Down
6 changes: 3 additions & 3 deletions scripts/grest-helper-scripts/setup-grest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@ SGVERSION=v1.2.0a
pkg_installer="dnf"
pkg_list="make gcc gcc-c++ autoconf autoconf-archive automake libtool pkgconfig"
fi
sudo ${pkg_installer} -u install ${pkg_list} >/dev/null || err_exit "'sudo ${pkg_installer} -y install ${pkg_list}' failed!"
sudo ${pkg_installer} -u upgrade ${pkg_list} >/dev/null || err_exit "'sudo ${pkg_installer} -y upgrade ${pkg_list}' failed!"
sudo ${pkg_installer} -y install ${pkg_list} >/dev/null || err_exit "'sudo ${pkg_installer} -y install ${pkg_list}' failed!"
sudo ${pkg_installer} -y upgrade ${pkg_list} >/dev/null || err_exit "'sudo ${pkg_installer} -y upgrade ${pkg_list}' failed!"
[[ ! -d "libbech32" ]] && git clone https://github.com/whitslack/libbech32 >/dev/null
pushd libbech32 || err_exit
pushd libbech32 || err_exit
git pull >/dev/null || err_exit
mkdir -p build-aux/m4
curl -sf https://raw.githubusercontent.com/NixOS/patchelf/master/m4/ax_cxx_compile_stdcxx.m4 -o build-aux/m4/ax_cxx_compile_stdcx.m4
Expand Down

0 comments on commit 7366184

Please sign in to comment.