Skip to content

Commit

Permalink
Adjust ExtrinsicV5 to fit current spec
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Nov 15, 2024
1 parent 40ac28b commit cbc3298
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions packages/types/src/extrinsic/ExtrinsicPayload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ const VERSIONS = [
const PREAMBLES = {
bare: 'ExtrinsicPayloadV5',
// Not supported yet
general: 'ExtrinsicPayloadV5',
signed: 'ExtrinsicPayloadV5'
general: 'ExtrinsicPayloadV5'
};

/** @internal */
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/extrinsic/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ export interface ExtrinsicExtraValue {
tip?: AnyNumber;
}

export type Preamble = 'signed' | 'bare' | 'general';
export type Preamble = 'bare' | 'general';

0 comments on commit cbc3298

Please sign in to comment.