به Nostr بپیوندید
2023-06-07 17:45:41 UTC
in reply to

npub1fx…cl2d8 on Nostr: 📅 Original date posted:2015-12-08 📝 Original message:On Wed, Dec 9, 2015 at ...

📅 Original date posted:2015-12-08
📝 Original message:On Wed, Dec 9, 2015 at 1:58 AM, Jorge Timón <jtimon at jtimon.cc> wrote:
> struct hashRootStruct
> {
> uint256 hashMerkleRoot;
> uint256 hashWitnessesRoot;
> int32_t nHeight;
> }

Or better, for forward compatibility (we may want to include more
things apart from nHeight and hashWitnessesRoot in the future):

struct hashRootStruct
{
uint256 hashMerkleRoot;
uint256 hashWitnessesRoot;
uint256 hashextendedHeader;
}

For example, we may want to chose to add an extra nonce there.