From 052193865e5b41500e17281ee40345a27eb7ef03 Mon Sep 17 00:00:00 2001 From: D-Stacks <78099568+D-Stacks@users.noreply.github.com> Date: Wed, 25 May 2022 17:23:44 +0200 Subject: [PATCH] populate with verbos (#2064) Co-authored-by: Ori Newman Co-authored-by: Michael Sutton --- domain/consensus/model/externalapi/utxoentry.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domain/consensus/model/externalapi/utxoentry.go b/domain/consensus/model/externalapi/utxoentry.go index f3daadd21..d3b42db60 100644 --- a/domain/consensus/model/externalapi/utxoentry.go +++ b/domain/consensus/model/externalapi/utxoentry.go @@ -1,13 +1,13 @@ package externalapi // UTXOEntry houses details about an individual transaction output in a utxo -// set such as whether or not it was contained in a coinbase tx, the blue +// set such as whether or not it was contained in a coinbase tx, the daa // score of the block that accepts the tx, its public key script, and how // much it pays. type UTXOEntry interface { Amount() uint64 ScriptPublicKey() *ScriptPublicKey // The public key script for the output. - BlockDAAScore() uint64 // Blue score of the block accepting the tx. + BlockDAAScore() uint64 // Daa score of the block accepting the tx. IsCoinbase() bool Equal(other UTXOEntry) bool }