Raised when the address is not binary or it is not 20 bytes long. Exception used to enforce the sandwich encoding for python APIs. The internal address representation used by Raiden is binary, the binary address must be validated at the edges before calling internal functions.
| 159 | |
| 160 | |
| 161 | class InvalidBinaryAddress(RaidenValidationError): |
| 162 | """Raised when the address is not binary or it is not 20 bytes long. |
| 163 | |
| 164 | Exception used to enforce the sandwich encoding for python APIs. The |
| 165 | internal address representation used by Raiden is binary, the binary |
| 166 | address must be validated at the edges before calling internal functions. |
| 167 | """ |
| 168 | |
| 169 | |
| 170 | class InvalidSecret(RaidenError): |
no outgoing calls
no test coverage detected