From da6bd5026a178ff60096c8ac9f8e64e4192a5e68 Mon Sep 17 00:00:00 2001 From: Jai Raj Rana Magar Date: Wed, 28 Aug 2024 13:16:43 +0545 Subject: [PATCH] Global Tx Receipt Verification Added addressHash in the SetGlobalTx --- src/p2p/GlobalAccountsTypes.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/p2p/GlobalAccountsTypes.ts b/src/p2p/GlobalAccountsTypes.ts index aa6520d..3a78caf 100644 --- a/src/p2p/GlobalAccountsTypes.ts +++ b/src/p2p/GlobalAccountsTypes.ts @@ -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 @@ -24,3 +25,5 @@ export interface Tracker { export type TxHash = string export type SignedSetGlobalTx = SetGlobalTx & SignedObject + +export type GlobalTxReceipt = Omit \ No newline at end of file