Skip to content

Commit

Permalink
Fix mismatch in annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
TkzcM authored May 9, 2021
1 parent 815802f commit 2124cd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions solana/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ class TransactionInstruction(NamedTuple):
"""Transaction Instruction class."""

keys: List[AccountMeta]
"""Program input."""
program_id: PublicKey
"""Public keys to include in this transaction Boolean represents whether this
pubkey needs to sign the transaction.
"""
data: bytes = bytes(0)
program_id: PublicKey
"""Program Id to execute."""
data: bytes = bytes(0)
"""Program input."""


class NonceInformation(NamedTuple):
Expand Down

0 comments on commit 2124cd2

Please sign in to comment.