Merge pull request #85 from jessopb/transactionAll

adds ALL to transaction types
This commit is contained in:
Sean Yesmunt 2018-10-18 01:20:14 -04:00 committed by GitHub
commit d4e17e18f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
dist/bundle.js vendored
View file

@ -5014,6 +5014,7 @@ Object.defineProperty(exports, "__esModule", {
value: true
});
// eslint-disable-next-line import/prefer-default-export
var ALL = exports.ALL = 'all';
var SPEND = exports.SPEND = 'spend';
var RECEIVE = exports.RECEIVE = 'receive';
var PUBLISH = exports.PUBLISH = 'publish';

View file

@ -1,4 +1,5 @@
// eslint-disable-next-line import/prefer-default-export
export const ALL = 'all';
export const SPEND = 'spend';
export const RECEIVE = 'receive';
export const PUBLISH = 'publish';