Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

fix: update merkle-patricia-tree to v3.0.0 to support node 14 #636

Merged
merged 5 commits into from
Sep 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
version: ~> 1.0
language: node_js
node_js:
- "8"
- "10"
- "12"
- "14.11.0"
os:
- linux
- osx
Expand Down Expand Up @@ -33,6 +33,3 @@ before_install:
script:
- npm run test
- npm run test-smoke

after_success:
npm run coverage
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[![npm Version](https://img.shields.io/npm/v/ganache-core.svg)](https://www.npmjs.com/package/ganache-core)
[![npm Downloads](https://img.shields.io/npm/dm/ganache-core.svg)](https://www.npmjs.com/package/ganache-core)
[![Build Status](https://travis-ci.org/trufflesuite/ganache-core.svg?branch=master)](https://travis-ci.org/trufflesuite/ganache-core)
[![Coverage Status](https://coveralls.io/repos/github/trufflesuite/ganache-core/badge.svg?branch=develop)](https://coveralls.io/github/trufflesuite/ganache-core?branch=develop)
# Ganache Core

This is the core code that powers the Ganache application and the Ganache command line tool.
Expand Down
2 changes: 1 addition & 1 deletion lib/forking/forked_storage_trie.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ inherits(ForkedStorageTrie, ForkedStorageBaseTrie);

function ForkedStorageTrie(db, root, options) {
ForkedStorageBaseTrie.call(this, db, root, options);
checkpointInterface(this);
checkpointInterface.call(this, this);
}

ForkedStorageTrie.prove = MerklePatriciaTree.prove;
Expand Down
Loading