hyper-multisig 0.1.0 → 0.1.1
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
|
@@ -174,7 +174,7 @@ class HyperMultisig {
|
|
|
174
174
|
commit: !dryRun
|
|
175
175
|
})
|
|
176
176
|
|
|
177
|
-
if (!force) {
|
|
177
|
+
if (!force && !dryRun) {
|
|
178
178
|
runner.emit('verify-committed-start', core.key)
|
|
179
179
|
await MultisigUtil.verifyCoreCommitted(core, { minPeers: minFullCopies })
|
|
180
180
|
}
|
|
@@ -255,7 +255,7 @@ class HyperMultisig {
|
|
|
255
255
|
{ end: length, blobsEnd: blobsLength, commit: !dryRun }
|
|
256
256
|
)
|
|
257
257
|
|
|
258
|
-
if (!force) {
|
|
258
|
+
if (!force && !dryRun) {
|
|
259
259
|
runner.emit('verify-committed-start', core.key)
|
|
260
260
|
await MultisigUtil.verifyCoreCommitted(core)
|
|
261
261
|
await MultisigUtil.verifyCoreCommitted(blobsCore)
|