Change initial account transaction sequence to 1

This commit is contained in:
wltsmrz
2014-10-27 17:29:51 -07:00
parent 4bd1e7a2bc
commit a3c1d06eba

View File

@@ -174,8 +174,8 @@ Account.prototype.getNextSequence = function(callback) {
function accountInfo(err, info) {
if (isNotFound(err)) {
// New accounts will start out as sequence zero
callback(null, 0);
// New accounts will start out as sequence one
callback(null, 1);
} else if (err) {
callback(err);
} else {