Skip to content

Commit

Permalink
Merge pull request #446 from ainblockchain/release/v0.7.7
Browse files Browse the repository at this point in the history
Merge Release/v0.7.7 into master
  • Loading branch information
minsulee2 committed Jun 15, 2021
2 parents 8a85c7f + 7855091 commit 32127d6
Show file tree
Hide file tree
Showing 36 changed files with 2,169 additions and 637 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# XXX: Project Related
chains
ain_blockchain_data
logs
log1.txt
log2.txt
Expand Down
109 changes: 0 additions & 109 deletions blockchain/block-file-util.js

This file was deleted.

2 changes: 1 addition & 1 deletion blockchain/block.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const stringify = require('fast-json-stable-stringify');
const sizeof = require('object-sizeof');
const moment = require('moment');
const _ = require('lodash');
const logger = require('../logger')('BLOCK');
const ChainUtil = require('../common/chain-util');
const Transaction = require('../tx-pool/transaction');
Expand Down Expand Up @@ -259,7 +260,6 @@ class Block {
}

static buildGenesisStakingTxs(timestamp) {
const _ = require('lodash');
const txs = [];
Object.entries(GENESIS_VALIDATORS).forEach(([address, amount], index) => {
const privateKey = _.get(GenesisAccounts,
Expand Down
Loading

0 comments on commit 32127d6

Please sign in to comment.