Skip to content

Commit

Permalink
Moving some more changes over
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Dec 5, 2023
1 parent 038a3f0 commit 9bf6a97
Show file tree
Hide file tree
Showing 4 changed files with 196 additions and 189 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Node 18
uses: actions/setup-node@v2
with:
node-version: '18x'
node-version: '18.x'

- name: Install Dependencies
run: yarn install
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"axios": "^1.6.0",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"stellar-base": "git+https://github.com/stellar/js-stellar-base#8d8b09b",
"stellar-base": "git+https://github.com/stellar/js-stellar-base#af1b94a",
"urijs": "^1.19.1"
}
}
16 changes: 4 additions & 12 deletions test/unit/server/get_events_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,7 @@ let getEventsResponseFixture = [
pagingToken: '164090849041387521-3',
inSuccessfulContractCall: true,
topic: topicVals.slice(0, 2),
value: {
xdr: eventVal
}
value: eventVal
},
{
type: 'contract',
Expand All @@ -257,9 +255,7 @@ let getEventsResponseFixture = [
pagingToken: '164090849041387521-3',
inSuccessfulContractCall: true,
topic: topicVals.slice(0, 2),
value: {
xdr: eventVal
}
value: eventVal
},
{
type: 'diagnostic',
Expand All @@ -270,9 +266,7 @@ let getEventsResponseFixture = [
pagingToken: '164090849041387521-3',
inSuccessfulContractCall: true,
topic: [topicVals[0]],
value: {
xdr: eventVal
}
value: eventVal
},
{
type: 'contract',
Expand All @@ -283,8 +277,6 @@ let getEventsResponseFixture = [
pagingToken: '0000000171798695936-0000000001',
inSuccessfulContractCall: true,
topic: topicVals,
value: {
xdr: eventVal
}
value: eventVal
}
];
Loading

0 comments on commit 9bf6a97

Please sign in to comment.