mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 11:45:49 +00:00
Use binary sequence increment
This commit is contained in:
@@ -208,7 +208,7 @@ TransactionManager.prototype._fillSequence = function(tx, callback) {
|
||||
if (++submitted === sequenceDif) {
|
||||
callback();
|
||||
} else {
|
||||
nextFill(++sequence);
|
||||
nextFill(sequence + 1);
|
||||
}
|
||||
});
|
||||
})(sequence);
|
||||
|
||||
Reference in New Issue
Block a user