SimpleChaincode example simple Chaincode implementation
type SimpleChaincode struct{}
func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface) pb.Response
Init takes a string and int. These are stored as a key/value pair in the state
func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface) pb.Response
Invoke is a no-op