Fix error message

This commit is contained in:
Matthew Sevey 2021-10-26 12:18:56 -04:00
parent 5dc357b3d1
commit f6febd04b3
No known key found for this signature in database
GPG Key ID: 9ADDD344F13057F6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ async function skydConfigCheck(done) {
let actual = BigInt(response.settings.allowance.paymentcontractinitialfunding);
let expected = BigInt(10000000000000000000000000); // 10 SC
if (actual !== expected) {
throw new Error("Skynet Portal Per-Contract Budget is not set!");
throw new Error("Skynet Portal Per-Contract Budget is not set correctly!");
}
data.up = true;