The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/blockchain/utxopool_test.go

24 lines
548 B

package blockchain
import (
"testing"
)
6 years ago
func TestVerifyOneTransactionAndUpdate(t *testing.T) {
bc := CreateBlockchain("minh")
utxoPool := CreateUTXOPoolFromGenesisBlockChain(bc)
bc.AddNewUserTransfer(utxoPool, "minh", "alok", 3)
bc.AddNewUserTransfer(utxoPool, "minh", "rj", 100)
tx := bc.NewUTXOTransaction("minh", "mark", 10)
if tx == nil {
t.Error("failed to create a new transaction.")
}
6 years ago
6 years ago
if !utxoPool.VerifyOneTransaction(tx) {
t.Error("failed to verify a valid transaction.")
}
6 years ago
utxoPool.VerifyOneTransactionAndUpdate(tx)
}