Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ledger/common/certs.go
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ type StakeVoteRegistrationDelegationCertificate struct {
cbor.DecodeStoreCbor
CertType uint
StakeCredential Credential
PoolKeyHash []byte
PoolKeyHash PoolKeyHash
Drep Drep
Amount int64
}
Expand Down
2 changes: 2 additions & 0 deletions ledger/conway/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ func UtxoValidateValueNotConservedUtxo(
producedValue += uint64(tmpPparams.KeyDeposit)
case *common.StakeRegistrationDelegationCertificate:
producedValue += uint64(tmpPparams.KeyDeposit)
case *common.StakeVoteRegistrationDelegationCertificate:
producedValue += uint64(tmpPparams.KeyDeposit)
}
}
for _, proposal := range tx.ProposalProcedures() {
Expand Down
Loading