@typeberry/lib 0.2.0-74f246e → 0.2.0-b6667ce
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/index.cjs +2 -0
- package/index.js +2 -0
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -8072,6 +8072,8 @@ function accumulationOutputComparator(a, b) {
|
|
|
8072
8072
|
const O = 8;
|
|
8073
8073
|
/** `Q`: The number of items in the authorizations queue. */
|
|
8074
8074
|
const Q = 80;
|
|
8075
|
+
/** `W_B`: The maximum size of the concatenated variable-size blobs, extrinsics and imported segments of a work-package, in octets */
|
|
8076
|
+
Compatibility.isGreaterOrEqual(GpVersion.V0_7_2) ? 13_791_360 : 13_794_305;
|
|
8075
8077
|
/** `W_T`: The size of a transfer memo in octets. */
|
|
8076
8078
|
const W_T = 128;
|
|
8077
8079
|
/**
|
package/index.js
CHANGED
|
@@ -8069,6 +8069,8 @@ function accumulationOutputComparator(a, b) {
|
|
|
8069
8069
|
const O = 8;
|
|
8070
8070
|
/** `Q`: The number of items in the authorizations queue. */
|
|
8071
8071
|
const Q = 80;
|
|
8072
|
+
/** `W_B`: The maximum size of the concatenated variable-size blobs, extrinsics and imported segments of a work-package, in octets */
|
|
8073
|
+
Compatibility.isGreaterOrEqual(GpVersion.V0_7_2) ? 13_791_360 : 13_794_305;
|
|
8072
8074
|
/** `W_T`: The size of a transfer memo in octets. */
|
|
8073
8075
|
const W_T = 128;
|
|
8074
8076
|
/**
|