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
Chore - Use wrapper structs for bitcoin and stacks block height
1. Description
We want to create structs like struct BitcoinBlockHeight(u64) and struct StacksBlockHeight(u64) and switch from using raw integers to using this structs
2. Why It's Necessary
It shows semantics of variable more explicitly. It can prevent some confusions and misunderstandings.
3. Execution Checklist
structs for bitcoin and stacks heights are implemented with all necessary functions
all raw integers representing stacks/bitcoin block height replaced by this structs
The text was updated successfully, but these errors were encountered:
Chore - Use wrapper structs for bitcoin and stacks block height
1. Description
We want to create structs like
struct BitcoinBlockHeight(u64)
andstruct StacksBlockHeight(u64)
and switch from using raw integers to using this structs2. Why It's Necessary
It shows semantics of variable more explicitly. It can prevent some confusions and misunderstandings.
3. Execution Checklist
The text was updated successfully, but these errors were encountered: