Skip to content

Commit 182a867

Browse files
committed
FAB-939 temp hack for orderer to allow Transaction2
per discussion with Jason and Murali, adding this temp fix to unblock teams who need to test transaction submissions. real fix will be for fabric and order to use common message format, which is onging. Change-Id: I410e152f3080b79766ba781a11916866ea641756 Signed-off-by: Jim Zhang <[email protected]>
1 parent ed7c4cf commit 182a867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

orderer/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131
"github.com/hyperledger/fabric/orderer/common/bootstrap"
3232
"github.com/hyperledger/fabric/orderer/common/bootstrap/static"
3333
"github.com/hyperledger/fabric/orderer/common/broadcastfilter"
34-
"github.com/hyperledger/fabric/orderer/common/broadcastfilter/configfilter"
34+
// "github.com/hyperledger/fabric/orderer/common/broadcastfilter/configfilter"
3535
"github.com/hyperledger/fabric/orderer/common/configtx"
3636
"github.com/hyperledger/fabric/orderer/common/policies"
3737
"github.com/hyperledger/fabric/orderer/config"
@@ -137,7 +137,7 @@ func bootstrapConfigManager(lastConfigTx *ab.ConfigurationEnvelope) configtx.Man
137137
func createBroadcastRuleset(configManager configtx.Manager) *broadcastfilter.RuleSet {
138138
return broadcastfilter.NewRuleSet([]broadcastfilter.Rule{
139139
broadcastfilter.EmptyRejectRule,
140-
configfilter.New(configManager),
140+
// configfilter.New(configManager),
141141
broadcastfilter.AcceptRule,
142142
})
143143
}

0 commit comments

Comments
 (0)