(stamp: Stamp<unknown, true>)
| 34 | ): Stamp<Value, true> => [value, hlc, hash]; |
| 35 | |
| 36 | export const getStampHash = (stamp: Stamp<unknown, true>): Hash => stamp[2]; |
| 37 | |
| 38 | export const replaceHlcHash = (oldHlc: Hlc, newHlc: Hlc) => |
| 39 | newHlc > oldHlc ? (oldHlc ? getHash(oldHlc) : 0) ^ getHash(newHlc) : 0; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…