File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
libs/ledger-live-common/src/bridge/generic-alpaca Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import { FeeNotLoaded } from "@ledgerhq/errors";
13
13
import { Result } from "@ledgerhq/coin-framework/derivation" ;
14
14
import { MapMemo , TransactionIntent } from "@ledgerhq/coin-framework/api/types" ;
15
15
import { StellarMemo } from "@ledgerhq/coin-stellar/types/bridge" ;
16
+ import { log } from "@ledgerhq/logs" ;
16
17
import BigNumber from "bignumber.js" ;
17
18
18
19
/**
@@ -144,7 +145,9 @@ export const genericSignOperation =
144
145
signedInfo . publicKey ,
145
146
) ;
146
147
const operation = buildOptimisticOperation ( account , transaction , signedInfo . sequence ) ;
147
-
148
+ if ( ! operation . id ) {
149
+ log ( "Generic alpaca" , "buildOptimisticOperation" , operation ) ;
150
+ }
148
151
// NOTE: we set the transactionSequenceNumber before on the operation
149
152
// now that we create it in craftTransaction, we might need to return it back from craftTransaction also
150
153
o . next ( {
You can’t perform that action at this time.
0 commit comments