remove log

This commit is contained in:
PhilReact 2024-11-23 10:58:04 +02:00
parent c777bfe245
commit 84b6535750
2 changed files with 0 additions and 2 deletions

View File

@ -45,7 +45,6 @@ function sbrk(size) {
// Grow memory if needed
if (brk > memory.buffer.byteLength) {
const pagesNeeded = Math.ceil((brk - memory.buffer.byteLength) / (64 * 1024)); // 64 KiB per page
console.log(`Growing memory by ${pagesNeeded} pages`);
try {
memory.grow(pagesNeeded);
heap = new Uint8Array(memory.buffer); // Update heap view

View File

@ -24,7 +24,6 @@ export const decryptStoredWallet = async (password, wallet) => {
}
export const decryptStoredWalletFromSeedPhrase = async (password) => {
console.log('p')
const threads = doInitWorkers(crypto.kdfThreads)
const salt = new Uint8Array(void 0)