Dear Antonio,
Are there any plans to incorporate Blockchain initiatives in to FWH?
Thank you,
Dear Antonio,
Are there any plans to incorporate Blockchain initiatives in to FWH?
Thank you,
Dear Antonio,
We have been invited to be part of the global supply chain and logistics platform with IBM and Maersk (one of the largest shipping companies in the world). We are looking at available platforms and moving forward. It would be great if FWH had these capabilities.
Sincerely,
The hash of the previous block must be found in the block to preserve the chain integrity
Antonio,
A prototype in fivewin Will be great!!.
Antonio,
Very interesting the "FWH Blockchain initiative" proposed by Darrell.
I think the Fivewin community, as a whole, should support it, as this would introduce Fivewin into the new distributed database development environment.
Regards,
George
function Main()
local aBlocks := { { 1, "first", 0 },;
{ 2, "second", 0 },;
{ 3, "third", 0 },;
{ 4, "fourth", 0 },;
{ 5, "fifth", 0 } }
AEval( aBlocks, { | aBlock, n | If( n > 1,;
aBlock[ 3 ] := hb_HMAC_SHA256( aBlocks[ n - 1 ][ 2 ],;
aBlocks[ n - 1 ][ 3 ] ),) } )
aBlocks[ 3 ][ 2 ] = "changed!"
AEval( aBlocks, { | aBlock, n | If( n > 1,;
If( aBlock[ 3 ] != hb_HMAC_SHA256( aBlocks[ n - 1 ][ 2 ],;
aBlocks[ n - 1 ][ 3 ] ),;
MsgInfo( "blockchain modified at " + AllTrim( Str( n - 1 ) ) + ;
"element" ), ), ) } )
return nil