(updatedSet)
| 98 | } |
| 99 | |
| 100 | function isFullNodeSecretTupleUpdate(updatedSet) { |
| 101 | return Boolean(updatedSet) && MAILBOX_NODE_SECRET_TUPLE_KEYS.every((key) => updatedSet.has(key)); |
| 102 | } |
| 103 | |
| 104 | function canApplyPartialNodeSecretTupleWrite(key, disk, next) { |
| 105 | if (key !== 'node_secret_version') return false; |
no outgoing calls
no test coverage detected