Skip to content

Commit

Permalink
fix(cspr): account.ts invalid type and update gen mock.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
lawRathod committed Aug 24, 2023
1 parent 5bac45b commit 46deceb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const signOperation: SignOperationFnSignature<Transaction> = ({
signedOperation: {
operation,
signature: JSON.stringify(DeployUtil.deployToJson(signedDeploy)),
expirationDate: null,
expirationDate: undefined,
},
});
}
Expand Down
2 changes: 2 additions & 0 deletions libs/ledger-live-common/src/generated/bridge/mock.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import algorand from "../../families/algorand/bridge/mock";
import bitcoin from "../../families/bitcoin/bridge/mock";
import cardano from "../../families/cardano/bridge/mock";
import casper from "../../families/casper/bridge/mock";
import cosmos from "../../families/cosmos/bridge/mock";
import ethereum from "../../families/ethereum/bridge/mock";
import evm from "../../families/evm/bridge/mock";
Expand All @@ -15,6 +16,7 @@ export default {
algorand,
bitcoin,
cardano,
casper,
cosmos,
ethereum,
evm,
Expand Down

0 comments on commit 46deceb

Please sign in to comment.