Skip to content

Commit

Permalink
Merge pull request #1779 from tronprotocol/fixDBbug
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
zhaohong authored Nov 28, 2018
2 parents d79bb1a + 62e673a commit b9e5344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/tron/core/db/Manager.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import org.tron.common.utils.StringUtil;
import org.tron.core.Constant;
import org.tron.core.capsule.AccountCapsule;
import org.tron.core.capsule.AssetIssueCapsule;
import org.tron.core.capsule.BlockCapsule;
import org.tron.core.capsule.BlockCapsule.BlockId;
import org.tron.core.capsule.BytesCapsule;
Expand Down Expand Up @@ -469,6 +468,7 @@ public void initAccount() {
account.getBalance());
this.accountStore.put(account.getAddress(), accountCapsule);
this.accountIdIndexStore.put(accountCapsule);
this.accountIndexStore.put(accountCapsule);
});
}

Expand Down

0 comments on commit b9e5344

Please sign in to comment.