Updated dist files.

This commit is contained in:
Richard Moore 2019-10-30 19:17:31 +09:00
parent d0e0e30532
commit 76a8e503dd
No known key found for this signature in database
GPG Key ID: 665176BE8E9DC651
10 changed files with 15 additions and 8 deletions

@ -1,6 +1,11 @@
CHANGELOG
=========
ethers/v4.0.39 (2019-10-30 19:15)
---------------------------------
- Fix filters by forcing a poll instantly when polling starts to capture the current block. ([#613](https://github.com/ethers-io/ethers.js/issues/613); [d0e0e30](https://github.com/ethers-io/ethers.js/commit/d0e0e30532baf387df6b4a8efe0805986cc265f2))
ethers/v4.0.38 (2019-10-17 01:28)
---------------------------------

2
_version.d.ts vendored

@ -1 +1 @@
export declare const version = "4.0.38";
export declare const version = "4.0.39";

@ -1,3 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "4.0.38";
exports.version = "4.0.39";

3
dist/ethers.js vendored

@ -1,7 +1,7 @@
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ethers = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.version = "4.0.38";
exports.version = "4.0.39";
},{}],2:[function(require,module,exports){
"use strict";
@ -10654,6 +10654,7 @@ var BaseProvider = /** @class */ (function (_super) {
setTimeout(function () {
if (value && !_this._poller) {
_this._poller = setInterval(_this._doPoll.bind(_this), _this.pollingInterval);
_this._doPoll();
}
else if (!value && _this._poller) {
clearInterval(_this._poller);

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -266,7 +266,7 @@ declare module 'ethers/utils/shims' {
}
declare module 'ethers/_version' {
export const version = "4.0.38";
export const version = "4.0.39";
}
declare module 'ethers/utils/bignumber' {

@ -1,6 +1,6 @@
{
"name": "ethers",
"version": "4.0.38",
"version": "4.0.39",
"description": "Ethereum wallet library.",
"main": "./index.js",
"types": "./index.d.ts",

@ -594,6 +594,7 @@ var BaseProvider = /** @class */ (function (_super) {
setTimeout(function () {
if (value && !_this._poller) {
_this._poller = setInterval(_this._doPoll.bind(_this), _this.pollingInterval);
_this._doPoll();
}
else if (!value && _this._poller) {
clearInterval(_this._poller);

@ -1 +1 @@
export const version = "4.0.38";
export const version = "4.0.39";