Skip to content

Commit

Permalink
Global Tx Receipt Verification
Browse files Browse the repository at this point in the history
Added addressHash in the SetGlobalTx
  • Loading branch information
jairajdev authored and mhanson-github committed Oct 24, 2024
1 parent 3684197 commit da6bd50
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/p2p/GlobalAccountsTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { NodeInfo, Signature, SignedObject } from './P2PTypes'

export interface SetGlobalTx {
address: string
addressHash: string // the current state hash of the address
value: unknown
when: number
source: string
Expand All @@ -24,3 +25,5 @@ export interface Tracker {
export type TxHash = string

export type SignedSetGlobalTx = SetGlobalTx & SignedObject

export type GlobalTxReceipt = Omit<Receipt, 'consensusGroup'>

0 comments on commit da6bd50

Please sign in to comment.