mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-20 10:05:56 +00:00
remove log
This commit is contained in:
parent
c777bfe245
commit
84b6535750
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user