aboutsummaryrefslogtreecommitdiff
path: root/pkg/requests
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/requests')
-rw-r--r--pkg/requests/requests.go3
-rw-r--r--pkg/requests/requests_test.go8
2 files changed, 5 insertions, 6 deletions
diff --git a/pkg/requests/requests.go b/pkg/requests/requests.go
index 26a5213..4d09101 100644
--- a/pkg/requests/requests.go
+++ b/pkg/requests/requests.go
@@ -8,7 +8,8 @@ import (
)
type Leaf struct {
- types.Statement
+ ShardHint uint64 `ascii:"shard_hint"`
+ Preimage types.Hash `ascii:"preimage"`
Signature types.Signature `ascii:"signature"`
VerificationKey types.PublicKey `ascii:"verification_key"`
DomainHint string `ascii:"domain_hint"`
diff --git a/pkg/requests/requests_test.go b/pkg/requests/requests_test.go
index 7102714..365f90f 100644
--- a/pkg/requests/requests_test.go
+++ b/pkg/requests/requests_test.go
@@ -243,10 +243,8 @@ func TestCosignatureFromASCII(t *testing.T) {
func validLeaf(t *testing.T) *Leaf {
t.Helper()
return &Leaf{
- Statement: types.Statement{
- ShardHint: 1,
- Checksum: *newHashBufferInc(t),
- },
+ ShardHint: 1,
+ Preimage: *types.HashFn(newHashBufferInc(t)[:]),
Signature: *newSigBufferInc(t),
VerificationKey: *newPubBufferInc(t),
DomainHint: "example.com",
@@ -257,7 +255,7 @@ func validLeafASCII(t *testing.T) string {
t.Helper()
return fmt.Sprintf("%s=%d\n%s=%x\n%s=%x\n%s=%x\n%s=%s\n",
"shard_hint", 1,
- "checksum", newHashBufferInc(t)[:],
+ "preimage", types.HashFn(newHashBufferInc(t)[:])[:],
"signature", newSigBufferInc(t)[:],
"verification_key", newPubBufferInc(t)[:],
"domain_hint", "example.com",