GetCompanys keeps the historical example name available.
(ctx contractapi.TransactionContextInterface)
| 272 | |
| 273 | // GetCompanys keeps the historical example name available. |
| 274 | func (s *SmartContract) GetCompanys(ctx contractapi.TransactionContextInterface) ([]Company, error) { |
| 275 | return s.GetCompanies(ctx) |
| 276 | } |
| 277 | |
| 278 | func (s *SmartContract) GetTransactions(ctx contractapi.TransactionContextInterface) ([]Transaction, error) { |
| 279 | count, err := currentID(ctx, transferCounterKey) |
nothing calls this directly
no test coverage detected