Skip to content

Commit

Permalink
Merge pull request #261 from umbrella-network/feature/fix-balance-check
Browse files Browse the repository at this point in the history
fix: in `testBalanceThreshold` support case where `balance` is null
  • Loading branch information
DZariusz authored Jan 31, 2024
2 parents 7b8b88d + 8bafde4 commit f23bc2d
Show file tree
Hide file tree
Showing 33 changed files with 20 additions and 1,070 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
### Fixed
- in `testBalanceThreshold` support case where `balance` is null/undefined (solana case)

### Updated
- docker node to v18

### Removed
- remove `newrelic` and `statsd`

## [5.8.0] - 2023-05-29
### Removed
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM node:15-alpine
RUN apk add --no-cache bash python make g++ git
FROM node:18-alpine
RUN apk add --no-cache bash git make g++ python3
RUN adduser -D runner
RUN mkdir -p /home/runner/app
WORKDIR /home/runner/app
COPY package*.json ./
COPY tsconfig.json ./
COPY newrelic.js ./

RUN npm install -g typescript rimraf cpx
RUN chown -R runner:runner /home/runner
Expand Down
61 changes: 0 additions & 61 deletions newrelic.js

This file was deleted.

Loading

0 comments on commit f23bc2d

Please sign in to comment.