]> zoso.dev Git - libnemo.git/commitdiff
Switch block back to PowGpu.
authorChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:29:22 +0000 (13:29 -0800)
committerChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:29:22 +0000 (13:29 -0800)
src/lib/block.ts

index 1d36116e371df8ed73d7c71aa16964d8fc45f445..11b969f923a3074f11c9b934028b3800d601078c 100644 (file)
@@ -16,7 +16,7 @@ import { PowGl, PowGpu } from './workers.js'
 * of three derived classes: SendBlock, ReceiveBlock, ChangeBlock.
 */
 abstract class Block {
-       static #pool: Pool = new Pool(PowGl)
+       static #pool: Pool = new Pool(PowGpu)
        account: Account
        type: string = 'state'
        abstract subtype: 'send' | 'receive' | 'change'