use default vals for new accounts

This commit is contained in:
Ethan Buchman
2017-03-06 04:40:43 -05:00
parent cafc961679
commit e3826a2f45
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -21,9 +21,8 @@ func TestState(t *testing.T) {
//Account and address for tests
dumAddr := []byte("dummyAddress")
acc := &types.Account{
Sequence: 1,
}
acc := new(types.Account)
acc.Sequence = 1
//reset the store/state/cache
reset := func() {