Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
psheth9 committed May 17, 2024
1 parent 725d634 commit 7698a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rpc/api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AssetType, Contract, SorobanDataBuilder, xdr } from '@stellar/stellar-base';
import { Contract, SorobanDataBuilder, xdr } from '@stellar/stellar-base';

/* tslint:disable-next-line:no-namespace */
/** @namespace Api */
Expand Down
2 changes: 1 addition & 1 deletion src/rpc/parsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ function parseSuccessful(
}),

stateChanges: sim.stateChanges?.length ?? 0 > 0
? sim.stateChanges.map((entryChange) => {
? sim.stateChanges?.map((entryChange) => {
return {
type: entryChange.type,
key: xdr.LedgerKey.fromXDR(entryChange.key, 'base64'),
Expand Down

0 comments on commit 7698a58

Please sign in to comment.