Populate Seed (more TBD) and checks

This commit is contained in:
yuhan6665
2024-04-13 14:55:05 -04:00
parent b1f4d32ef0
commit 279abd4fc8
8 changed files with 152 additions and 80 deletions
+3
View File
@@ -21,6 +21,7 @@ func (a *Account) AsAccount() (protocol.Account, error) {
XorMode: a.XorMode,
Seconds: a.Seconds,
Padding: a.Padding,
Seed: a.Seed,
}, nil
}
@@ -35,6 +36,8 @@ type MemoryAccount struct {
XorMode uint32
Seconds uint32
Padding string
// Seed. Details TBD
Seed string
}
// Equals implements protocol.Account.Equals().