Skip to content

Commit

Permalink
Adds a check for tip in Submittable (#5953)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikhil Gupta <>
  • Loading branch information
gupnik authored Aug 15, 2024
1 parent 2329af2 commit fd84892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/submittable/createClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ export function createClass <ApiType extends ApiTypes> ({ api, apiType, blockHas
nonce: ext.nonce.toHex(),
runtimeVersion: payload.runtimeVersion,
signedExtensions: payload.signedExtensions,
tip: ext.tip.toHex(),
tip: ext.tip ? ext.tip.toHex() : null,
version: payload.version
})]);

Expand Down

0 comments on commit fd84892

Please sign in to comment.