hyper-multisig 0.1.1 → 0.1.2
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.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -143,7 +143,7 @@ class HyperMultisig {
|
|
|
143
143
|
const { length } = SignRequest.decode(z32.decode(request))
|
|
144
144
|
|
|
145
145
|
if (!force) {
|
|
146
|
-
runner.emit('verify-committable-start')
|
|
146
|
+
runner.emit('verify-committable-start', srcCore.key, core.key)
|
|
147
147
|
await MultisigUtil.verifyCoreCommittable(srcCore, core, length, {
|
|
148
148
|
skipTargetChecks,
|
|
149
149
|
peerUpdateTimeout
|
|
@@ -211,7 +211,7 @@ class HyperMultisig {
|
|
|
211
211
|
const blobsLength = content.length
|
|
212
212
|
|
|
213
213
|
if (!force) {
|
|
214
|
-
runner.emit('verify-committable-start')
|
|
214
|
+
runner.emit('verify-committable-start', srcDrive.db.core.key, core.key)
|
|
215
215
|
await MultisigUtil.verifyCoreCommittable(srcDrive.db.core, core, length, {
|
|
216
216
|
skipTargetChecks,
|
|
217
217
|
peerUpdateTimeout,
|