Skip to content

Commit

Permalink
Fix Signature schema data size to 64 bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed Nov 15, 2019
1 parent 49bde45 commit 533c22c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/transaction.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src.ts/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class Action extends Enum {
export const SCHEMA = new Map<Function, any>([
[Signature, {kind: 'struct', fields: [
['keyType', 'u8'],
['data', [32]]
['data', [64]]
]}],
[SignedTransaction, {kind: 'struct', fields: [
['transaction', Transaction],
Expand Down

0 comments on commit 533c22c

Please sign in to comment.