Drop notaryless code #361
No reviewers
Labels
No labels
P0
P1
P2
P3
badger
frostfs-adm
frostfs-cli
frostfs-ir
frostfs-lens
frostfs-node
good first issue
triage
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
5 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#361
Loading…
Reference in a new issue
No description provided.
Delete branch "dstepanov-yadro/frostfs-node:fix/drop-notaryless"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes #338
de5206a7b3
to60fd008df1
7097d4203d
to4dd52f90e0
4dd52f90e0
tod7ff51af09
WIP: Drop notaryless codeto Drop notaryless code@ -9,3 +9,3 @@
// invocations without notary support.
type FeeConfig struct {
registerNamedCnr,
//registerNamedCnr,
Why we need to keep it?
dropped
@ -263,9 +258,9 @@ func (s *Server) initContainerProcessor(cfg *viper.Viper, cnrClient *container.C
PoolSize: cfg.GetInt("workers.container"),
AlphabetState: s,
ContainerClient: cnrClient,
MorphClient: cnrClient.Morph(),
it's a bit strange to pass both
cnrClient
andcnrClient.Morph()
. Can we not resolve the morph client fromcnrClient
and avoid the extra field? Or is it so that it can mocked/tested?Yes, it is so that it can mocked/tested.
af1fff4f00
to1af9cd3667
@ -49,7 +49,6 @@ locode:
fee:
main_chain: 50000000 # Fixed8 value of extra GAS fee for mainchain contract invocation; ignore if notary is enabled in mainchain
side_chain: 200000000 # Fixed8 value of extra GAS fee for sidechain contract invocation; ignore if notary is enabled in sidechain
Can drop this too.