Skip to content

Commit

Permalink
add limit error
Browse files Browse the repository at this point in the history
  • Loading branch information
thesimplekid committed Sep 5, 2024
1 parent 435c510 commit 4de6338
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
13 changes: 7 additions & 6 deletions 03.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ If successful, `Bob` will respond with a `PostSwapResponse`

## Errors

| Code | Description |
|--------|-------------------------------------------|
| 10002 | Blinded message of output already signed |
| 10003 | Token could not be verified |
| 11001 | Token is already spent |
| 12002 | Keyset is inactive, cannot sign messages |
| Code | Description |
|--------|--------------------------------------------------|
| 10002 | Blinded message of output already signed |
| 10003 | Token could not be verified |
| 11001 | Token is already spent |
| 11002 | Transaction is not balanced (inputs != outputs) |
| 12002 | Keyset is inactive, cannot sign messages |

[00]: 00.md
[01]: 01.md
Expand Down
1 change: 1 addition & 0 deletions 04.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ Example `MintMethodSetting`:
|--------|-------------------------------------------|
| 10002 | Blinded message of output already signed |
| 11005 | Unit in request is not supported |
| 11006 | Amount outside of limit range |
| 12002 | Keyset is inactive, cannot sign messages |
| 20001 | Quote request is not paid |
| 20002 | Tokens have already been issued for quote |
Expand Down
18 changes: 10 additions & 8 deletions 05.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,14 +199,16 @@ Example `MeltMethodSetting`:

## Errors

| Code | Description |
|--------|-------------------------------------------|
| 10002 | Blinded message of output already signed |
| 10003 | Token could not be verified |
| 11001 | Token is already spent |
| 11005 | Unit in request is not supported |
| 20005 | Quote is pending |
| 20006 | Invoice already paid |
| Code | Description |
|--------|--------------------------------------------------|
| 10002 | Blinded message of output already signed |
| 10003 | Token could not be verified |
| 11001 | Token is already spent |
| 11002 | Transaction is not balanced (inputs != outputs) |
| 11005 | Unit in request is not supported |
| 11006 | Amount outside of limit range |
| 20005 | Quote is pending |
| 20006 | Invoice already paid |


[00]: 00.md
Expand Down

0 comments on commit 4de6338

Please sign in to comment.