Skip to content

Commit

Permalink
fix: Correcting incorrect indexer type for multisig signature (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
robdmoore authored Mar 13, 2024
1 parent 2639d16 commit 51c913f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ___

### signature

**signature**: `string`
`Optional` **signature**: `string`

[s] The signature

Expand Down
2 changes: 1 addition & 1 deletion src/types/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ export interface MultisigTransactionSubSignature {
*
* *Pattern:* `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`
*/
signature: string
signature?: string
}

/** Represents a TEAL value delta. https://developer.algorand.org/docs/rest-apis/indexer/#evaldelta */
Expand Down

0 comments on commit 51c913f

Please sign in to comment.