Displayed manifest in domain verification checker tool

This commit is contained in:
mbhandary
2020-04-03 18:16:02 -04:00
parent 8194abc74d
commit 0f7bab354f
2 changed files with 4 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ async function parse_xrpl_toml(data, public_key_hex, public_key, message) {
function display_manifest(man) {
for (x in man){
log = makeLogEntry(x + ":" +man[x]);
log = makeLogEntry(x + ": " +man[x]);
}
}
@@ -145,7 +145,7 @@ function parse_manifest() {
makeLogEntry("Domain not found in manifest").addClass(CLASS_BAD);
display_manifest({"Sequence":seq,
"Master Public Key": public_key,
"Ephemeral Publid Key":ephemeral_public_key});
"Ephemeral Public Key":ephemeral_public_key});
return;
}
@@ -154,7 +154,7 @@ function parse_manifest() {
display_manifest({"Sequence":seq,
"Domain":domain,
"Master Public Key": public_key,
"Ephemeral Publid Key":ephemeral_public_key})
"Ephemeral Public Key":ephemeral_public_key})