(ctx contractapi.TransactionContextInterface)
| 211 | } |
| 212 | |
| 213 | func (s *SmartContract) GetCenterBank(ctx contractapi.TransactionContextInterface) (*CenterBank, error) { |
| 214 | return readCenterBank(ctx) |
| 215 | } |
| 216 | |
| 217 | func (s *SmartContract) GetBankByID(ctx contractapi.TransactionContextInterface, id string) (*Bank, error) { |
| 218 | bankID, err := strconv.Atoi(id) |
nothing calls this directly
no test coverage detected