Separate out parameters of createMerkleInstant
function
#16
Labels
effort: medium
Default level of effort.
priority: 2
We will do our best to deal with this.
type: refactor
Change that neither fixes a bug nor adds a feature.
work: complicated
Sense-analyze-respond. The relationship between cause and effect requires analysis or expertise.
As discussed in #1 (comment):
createMerkleLL
andcreateMerkleLT
functions. Then DRY'ify their internal logic.createMerkleInstant
function and remove its dependency from the currentConstructorParams
struct.ConstructorParams
struct.The objective is to separate out
createMerkleInstant
input parameters fromcreateMerkleLL
andcreateMerkleLT
. Right now, there are a tons of parameters shared betweencreateMerkleLL
andcreateMerkleLT
which can be DRY'ified through a common struct between them. However, due to them sharing it withcreateMerkleInstant
, its not possible.The text was updated successfully, but these errors were encountered: