Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package stubs |
||
2 | |||
3 | // AccountBalanceWithError is a dummy json response for the `/api/account/agent/balance/v2/` endpoint with an error |
||
4 | func AccountBalanceWithError() []byte { |
||
5 | return []byte(` |
||
6 | { |
||
7 | "code": 500, |
||
8 | "message": "412: bad password", |
||
9 | "result": null |
||
10 | } |
||
11 | `) |
||
12 | } |
||
13 | |||
14 | // AccountBalance is a dummy json response for the `/api/account/agent/balance/v2/` endpoint |
||
15 | func AccountBalance() []byte { |
||
16 | return []byte(` |
||
17 | { |
||
28 |