@blinklabs/dingo 0.12.0 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.golangci.yml CHANGED
@@ -25,7 +25,6 @@ linters:
25
25
  - musttag
26
26
  - nilerr
27
27
  - nilnesserr
28
- - noctx
29
28
  - perfsprint
30
29
  - prealloc
31
30
  - protogetter
@@ -41,6 +40,7 @@ linters:
41
40
  - zerologlint
42
41
  disable:
43
42
  - depguard
43
+ - noctx
44
44
  exclusions:
45
45
  generated: lax
46
46
  presets:
package/dingo CHANGED
Binary file
@@ -55,3 +55,8 @@ intersectTip: false
55
55
  # Maximum cache size in bytes used by BadgerDB for block/index cache
56
56
  # Default: 1073741824 (1 GB)
57
57
  badgerCacheSize: 1073741824
58
+
59
+ # Maximum total size (in bytes) of all transactions allowed in the mempool.
60
+ # Transactions exceeding this limit will be rejected.
61
+ # Default: 1048576 (1 MB)
62
+ mempoolCapacity: 1048576
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinklabs/dingo",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "Dingo is a Cardano blockchain data node",
5
5
  "main": "index.js",
6
6
  "bin": {