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
{{ message }}
This repository was archived by the owner on Jul 14, 2020. It is now read-only.
Currently we are using testnet and mainnet when talking about the different networks of Bitcoin.
Every message between bitcoin nodes is prefixed with 4 bytes identifying the network the message is for.
We want to use those 4 bytes to identify the network in our swap messages.
Hints:
Think about endianess.
Think about hex vs dec encoding.
DoD:
replace testnet with testnet3 magic bytes for bitcoin networks
replace mainnet with mainnet magic bytes for bitcoin networks
among others, this will need to be updated in the registry
Once this is done:
create ticket for updating comit-rs (SWAP message + HTTP API)
Currently we are using
testnetandmainnetwhen talking about the different networks of Bitcoin.Every message between bitcoin nodes is prefixed with 4 bytes identifying the network the message is for.
We want to use those 4 bytes to identify the network in our swap messages.
Hints:
DoD:
testnetwith testnet3 magic bytes for bitcoin networksmainnetwith mainnet magic bytes for bitcoin networksamong others, this will need to be updated in the registry
Once this is done:
Related: comit-network/comit-rs#1127