fix typo and early return

This commit is contained in:
boufni95 2026-01-14 20:17:49 +00:00
parent f6e425aed5
commit b356d804a2
8 changed files with 16 additions and 15 deletions

View file

@ -1524,7 +1524,7 @@ The nostr server will send back a message response, and inside the body there wi
### PayAddressRequest
- __address__: _string_
- __amoutSats__: _number_
- __amountSats__: _number_
- __satsPerVByte__: _number_
- __swap_operation_id__: _string_ *this field is optional

View file

@ -549,7 +549,7 @@ type OperationsCursor struct {
}
type PayAddressRequest struct {
Address string `json:"address"`
Amoutsats int64 `json:"amoutSats"`
Amountsats int64 `json:"amountSats"`
Satspervbyte int64 `json:"satsPerVByte"`
Swap_operation_id string `json:"swap_operation_id"`
}

View file

@ -3243,7 +3243,7 @@ export const OperationsCursorValidate = (o?: OperationsCursor, opts: OperationsC
export type PayAddressRequest = {
address: string
amoutSats: number
amountSats: number
satsPerVByte: number
swap_operation_id?: string
}
@ -3252,7 +3252,7 @@ export const PayAddressRequestOptionalFields: PayAddressRequestOptionalField[] =
export type PayAddressRequestOptions = OptionsBaseMessage & {
checkOptionalsAreSet?: PayAddressRequestOptionalField[]
address_CustomCheck?: (v: string) => boolean
amoutSats_CustomCheck?: (v: number) => boolean
amountSats_CustomCheck?: (v: number) => boolean
satsPerVByte_CustomCheck?: (v: number) => boolean
swap_operation_id_CustomCheck?: (v?: string) => boolean
}
@ -3263,8 +3263,8 @@ export const PayAddressRequestValidate = (o?: PayAddressRequest, opts: PayAddres
if (typeof o.address !== 'string') return new Error(`${path}.address: is not a string`)
if (opts.address_CustomCheck && !opts.address_CustomCheck(o.address)) return new Error(`${path}.address: custom check failed`)
if (typeof o.amoutSats !== 'number') return new Error(`${path}.amoutSats: is not a number`)
if (opts.amoutSats_CustomCheck && !opts.amoutSats_CustomCheck(o.amoutSats)) return new Error(`${path}.amoutSats: custom check failed`)
if (typeof o.amountSats !== 'number') return new Error(`${path}.amountSats: is not a number`)
if (opts.amountSats_CustomCheck && !opts.amountSats_CustomCheck(o.amountSats)) return new Error(`${path}.amountSats: custom check failed`)
if (typeof o.satsPerVByte !== 'number') return new Error(`${path}.satsPerVByte: is not a number`)
if (opts.satsPerVByte_CustomCheck && !opts.satsPerVByte_CustomCheck(o.satsPerVByte)) return new Error(`${path}.satsPerVByte: custom check failed`)

View file

@ -431,7 +431,7 @@ message NewAddressResponse{
}
message PayAddressRequest{
string address = 1;
int64 amoutSats = 2;
int64 amountSats = 2;
int64 satsPerVByte = 3;
optional string swap_operation_id = 4;
}