Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test verbose docker error #37

Merged
merged 2 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/FullCheckpointDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function main() {
try {
full = await checkpointFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/LiteCheckpointDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
try {
lite = await checkpointFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/proxy/ProxyGatewayDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function main() {
try {
proxyGateway = await proxyGatewayFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/proxy/UpgradeCSC.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function main() {
try {
full = await fullFactory.deploy();
} catch (e) {
console.log(e)
console.error(e, "\n")
throw Error(
"deploy to parentnet node failure , pls check the parentnet node status"
);
Expand Down
1 change: 1 addition & 0 deletions scripts/utils/subnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ async function data() {
data0 = await block0res.json();
data1 = await block1res.json();
} catch (e) {
console.error(e, "\n")
throw Error(
"Fetch remote subnet node data error , pls check the subnet node status"
);
Expand Down
Loading