diff options
Diffstat (limited to 'verifysetup/core/storage.go')
-rw-r--r-- | verifysetup/core/storage.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/verifysetup/core/storage.go b/verifysetup/core/storage.go index 56d32af..48a31d9 100644 --- a/verifysetup/core/storage.go +++ b/verifysetup/core/storage.go @@ -63,3 +63,8 @@ func AddNode(node verify.Node, tx *bolt.Tx) error { } return nil } + +func CreateHeader(unsignedHash string, signedHash string, diskSize int, tableSize int) ([]byte, error) { + header := make([]byte, 200) + +} |