forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
processor.go
46 lines (36 loc) · 1.34 KB
/
processor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package transaction
import (
"fmt"
"github.com/hyperledger/fabric/common/flogging"
"github.com/hyperledger/fabric/core/ledger"
"github.com/hyperledger/fabric/protos/common"
"github.com/pkg/errors"
)
var logger = flogging.MustGetLogger("fabtoken-processor")
// Processor implements the interface 'github.com/hyperledger/fabric/core/ledger/customtx/Processor'
// for FabToken transactions
type Processor struct {
TMSManager TMSManager
}
func (p *Processor) GenerateSimulationResults(txEnv *common.Envelope, simulator ledger.TxSimulator, initializingLedger bool) error {
// Extract channel header and token transaction
ch, ttx, ci, err := UnmarshalTokenTransaction(txEnv.Payload)
if err != nil {
return errors.WithMessage(err, "failed unmarshalling token transaction")
}
// Get a TMSTxProcessor that corresponds to the channel
txProcessor, err := p.TMSManager.GetTxProcessor(ch.ChannelId)
if err != nil {
return errors.WithMessage(err, "failed getting committer")
}
// Extract the read dependencies and ledger updates associated to the transaction using simulator
err = txProcessor.ProcessTx(ch.TxId, ci, ttx, simulator)
if err != nil {
return errors.WithMessage(err, fmt.Sprintf("failed committing transaction for channel %s", ch.ChannelId))
}
return err
}