BitSharp.Core.Test.Rules.UnitTestRules.PostValidateBlock C# (CSharp) Method

PostValidateBlock() public method

public PostValidateBlock ( BitSharp.Core.Domain.Chain newChain, object finalTally ) : void
newChain BitSharp.Core.Domain.Chain
finalTally object
return void
        public void PostValidateBlock(Chain newChain, object finalTally)
        {
            if (PreValidateBlockAction == null)
                coreRules.PostValidateBlock(newChain, finalTally);
            else
                PostValidateBlockAction(newChain, finalTally);
        }
    }