Practical notes on Enterprise software systems and the economics of software.
Thursday, August 1, 2019
Hyperledger Fabric tips and tricks - static variables in chaincode
Do not use static variables in your chaincode in Hyperedger Fabric to store general settings, beacuse if the docker containers are restarted, your setting can be lost. Store instead everything in the ledger, or optionally in the private store.