expose window.setClockParams

pull/1168/head
Ryan Tharp 5 years ago committed by GitHub
parent b5d90ab713
commit f28508b849
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -124,7 +124,7 @@
}; };
// require for PoW to work // require for PoW to work
const setClockParams = async () => { window.setClockParams = async () => {
// Set server-client time difference // Set server-client time difference
const maxTimeDifferential = 30 + 15; // + 15 for onion requests const maxTimeDifferential = 30 + 15; // + 15 for onion requests
const timeDifferential = await getTimeDifferential(); const timeDifferential = await getTimeDifferential();
@ -133,5 +133,5 @@
window.clientClockSynced = Math.abs(timeDifferential) < maxTimeDifferential; window.clientClockSynced = Math.abs(timeDifferential) < maxTimeDifferential;
return window.clientClockSynced; return window.clientClockSynced;
}; };
setClockParams(); window.setClockParams();
})(); })();

Loading…
Cancel
Save