File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - fixed: Crash when running under NodeJS due to missing memletConfig
6+
57## 3.8.2 (2025-06-09)
68
79- changed: Remove NOWNodes blockbook connection for Firo.
Original file line number Diff line number Diff line change @@ -42,13 +42,19 @@ export function makeCurrencyPlugin(
4242 } )
4343
4444 if ( ! hasMemletBeenSet ) {
45- const { memletConfig } = nativeIo [
45+ const pluginConfig = nativeIo [
4646 'edge-currency-plugins'
4747 ] as EdgeCurrencyPluginNativeIo
4848
49+ const memletConfig = pluginConfig ?. memletConfig
50+
4951 if ( memletConfig != null ) {
5052 hasMemletBeenSet = true
5153 setMemletConfig ( memletConfig )
54+ } else {
55+ setMemletConfig ( {
56+ maxMemoryUsage : 50 * 1024 * 1024 // 50MB
57+ } )
5258 }
5359 }
5460
You can’t perform that action at this time.
0 commit comments