Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmaayan committed Oct 25, 2023
1 parent 296373f commit 0971e14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/internal/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export async function waitForTransaction(args: {
const { aptosConfig, transactionHash, options } = args;
const timeoutSecs = options?.timeoutSecs ?? DEFAULT_TXN_TIMEOUT_SEC;
const checkSuccess = options?.checkSuccess ?? true;
const indexerVersionCheck = options?.indexerVersionCheck ?? false;
const indexerVersionCheck = options?.indexerVersionCheck ?? true;

let isPending = true;
let timeElapsed = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ export type GenerateAccountWithLegacyKey = {
* In this case `legacy` is always false
*/
export type GenerateAccountWithUnifiedKey = {
scheme: SigningSchemeInput.Secp256k1Ecdsa;
scheme: SigningSchemeInput.Secp256k1Ecdsa | SigningSchemeInput.Ed25519;
legacy?: false;
};

Expand Down

0 comments on commit 0971e14

Please sign in to comment.