Skip to content

Commit

Permalink
fix(nonce-verification): add missed space
Browse files Browse the repository at this point in the history
  • Loading branch information
davidyuk committed Apr 28, 2021
1 parent 6f900b9 commit 3f244df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tx/builder/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -1317,7 +1317,7 @@ export const BASE_VERIFICATION_SCHEMA = [
ERRORS.insufficientBalanceForAmount
),
VERIFICATION_FIELD(
({ accountNonce }) => `The nonce is invalid(already used). Next valid nonce is ${accountNonce + 1})`,
({ accountNonce }) => `The nonce is invalid (already used). Next valid nonce is ${accountNonce + 1})`,
VALIDATORS.nonceUsed,
ERRORS.nonceUsed
),
Expand Down

0 comments on commit 3f244df

Please sign in to comment.