You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it stands. A lot of code is rewritten in each folder. Each separate chain has its own module and checksums, but, we could have the commands be refactored into separate folders and the modules for each chain are used instead.
Example
Main source code is in.
src/initiate.go
src/participate.go
# etc...
Chain specific source code is in
btc/go.mod
btc/sum.mod
btc/btcatomicswap.go
And so forth.
Suggestions
Refactor source code in this way in order to reduce SLOC and make it easier to review code.
Ensure that standards are consistent across all chains.
Ensure that test cases and documentation for each chain works properly.
The text was updated successfully, but these errors were encountered:
Description
As it stands. A lot of code is rewritten in each folder. Each separate chain has its own module and checksums, but, we could have the commands be refactored into separate folders and the modules for each chain are used instead.
Example
Main source code is in.
src/initiate.go src/participate.go # etc...
Chain specific source code is in
And so forth.
Suggestions
Refactor source code in this way in order to reduce SLOC and make it easier to review code.
Ensure that standards are consistent across all chains.
Ensure that test cases and documentation for each chain works properly.
The text was updated successfully, but these errors were encountered: