Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
area363 committed Oct 31, 2023
1 parent e5d6fcd commit 7811f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib9c.Policy/NCStagePolicy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ public IEnumerable<Transaction> Iterate(BlockChain blockChain, bool filtered = t
{
// update txQuotaPerSigner if ACS returns a value for the signer.
int? acsTxQuota = _accessControlService.GetTxQuota(tx.Signer);
Console.WriteLine("[ACS-TEST] acsTxQuota for {0}: {1}", tx.Signer.ToString, acsTxQuota.ToString());
Console.WriteLine("[ACS-TEST] acsTxQuota for {0}: {1}", tx.Signer, acsTxQuota);
if (acsTxQuota.HasValue)
{
Console.WriteLine("[ACS-TEST] acsTxQuota for {0}: {1} NOT NULL", tx.Signer.ToString, acsTxQuota.ToString());
Console.WriteLine("[ACS-TEST] acsTxQuota for {0}: {1} NOT NULL", tx.Signer, acsTxQuota);
txQuotaPerSigner = (int)acsTxQuota;
}
}
Expand Down

0 comments on commit 7811f71

Please sign in to comment.