Skip to content

Commit

Permalink
Merge pull request #141 from tronprotocol/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
unicornonea authored Feb 10, 2021
2 parents d30684f + 20e3d8e commit df30030
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ In order to contribute you can

## Recent History

__3.2.4__
- Set feeLimit default value as 150 TRX

__3.2.3__
- Support triggerSmartContract function with empty character functionSelector and empty array parameters
- The triggerSmartContract function Support for anonymous contract parameter incoming
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tronweb",
"version": "3.2.3",
"version": "3.2.4",
"description": "JavaScript SDK that encapsulates the TRON HTTP API",
"main": "dist/TronWeb.node.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { ADDRESS_PREFIX } from 'utils/address';

const DEFAULT_VERSION = '3.5.0';

const FEE_LIMIT = 40000000;
const FEE_LIMIT = 150000000;

export default class TronWeb extends EventEmitter {
static providers = providers;
Expand Down

0 comments on commit df30030

Please sign in to comment.