diff --git a/src/families/cosmos/api/Cosmos.ts b/src/families/cosmos/api/Cosmos.ts index 04190c2517..5d9e0127f3 100644 --- a/src/families/cosmos/api/Cosmos.ts +++ b/src/families/cosmos/api/Cosmos.ts @@ -246,7 +246,10 @@ export const broadcast = async ({ ); } - return patchOperationWithHash(operation, data.tx_response.txhash); + return patchOperationWithHash( + { ...operation, blockHeight: data.tx_response.height }, + data.tx_response.txhash + ); }; export const getBlock = async (height: number): Promise => {