本文整理匯總了C#中System.Operation.GetId方法的典型用法代碼示例。如果您正苦於以下問題:C# Operation.GetId方法的具體用法?C# Operation.GetId怎麽用?C# Operation.GetId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Operation
的用法示例。
在下文中一共展示了Operation.GetId方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Received
private void Received(TrackedScript match, IndexedTxOut txout, ChainedBlock block, MerkleBlock proof)
{
var operation = new Operation(txout.Transaction, block, proof);
SetUnconfirmedSeenIfPossible(txout.Transaction, block, operation);
var coin = new Coin(txout);
operation.ReceivedCoins.Add(Tuple.Create(coin, match.GetId()));
_Operations.AddOrUpdate(operation.GetId(), operation, (k, old) => old.Merge(operation));
var trackedOutpoint = new TrackedOutpoint()
{
Coin = coin,
TrackedScriptId = match.GetId(),
Filter = match.Filter
};
_TrackedOutpoints.TryAdd(trackedOutpoint.GetId(), trackedOutpoint);
}
示例2: Received
private Operation Received(TrackedScript match, IndexedTxOut txout, ChainedBlock block, MerkleBlock proof)
{
var operation = new Operation(txout.Transaction, block, proof, _TrackedScripts);
SetUnconfirmedSeenIfPossible(txout.Transaction, block, operation);
var coin = new Coin(txout);
operation.ReceivedCoins.Add(Tuple.Create(coin, match.GetId()));
bool merged = false;
var returned = _Operations.AddOrUpdate(operation.GetId(), operation, (k, old) => old.Merge(operation, out merged));
var trackedOutpoint = new TrackedOutpoint()
{
Coin = coin,
TrackedScriptId = match.GetId(),
Filter = match.Filter
};
_TrackedOutpoints.TryAdd(trackedOutpoint.GetId(), trackedOutpoint);
return (operation == returned || merged) ? operation : null;
}
示例3: Spent
private void Spent(TrackedScript metadata, IndexedTxIn txin, Coin coin, ChainedBlock block, MerkleBlock proof)
{
var operation = new Operation(txin.Transaction, block, proof);
operation.SpentCoins.Add(Tuple.Create(coin, metadata.GetId()));
SetUnconfirmedSeenIfPossible(txin.Transaction, block, operation);
_Operations.AddOrUpdate(operation.GetId(), operation, (k, old) => old.Merge(operation));
}
示例4: Spent
private Operation Spent(TrackedScript metadata, IndexedTxIn txin, Coin coin, ChainedBlock block, MerkleBlock proof)
{
var operation = new Operation(txin.Transaction, block, proof, _TrackedScripts);
operation.SpentCoins.Add(Tuple.Create(coin, metadata.GetId()));
SetUnconfirmedSeenIfPossible(txin.Transaction, block, operation);
bool merged = false;
var returned = _Operations.AddOrUpdate(operation.GetId(), operation, (k, old) => old.Merge(operation, out merged));
return (operation == returned || merged) ? operation : null;
}