We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7326600 commit cb811e2Copy full SHA for cb811e2
1 file changed
patches/bsv/lib/transaction/transaction.js
@@ -62,7 +62,6 @@ function Transaction (serialized) {
62
63
var CURRENT_VERSION = 1
64
var DEFAULT_NLOCKTIME = 0
65
-var MAX_BLOCK_SIZE = 1000000
66
67
// Minimum amount for an output for it not to be considered a dust output
68
Transaction.DUST_AMOUNT = 1
@@ -1201,11 +1200,6 @@ Transaction.prototype.verify = function (notVerifyInput) {
1201
1200
}
1202
1203
1204
- // Size limits
1205
- if (this.toBuffer().length > MAX_BLOCK_SIZE) {
1206
- return 'transaction over the maximum block size'
1207
- }
1208
-
1209
// Check for duplicate inputs
1210
var txinmap = {}
1211
for (i = 0; i < this.inputs.length; i++) {
0 commit comments