-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove create object & bucket approval (#580)
* feat: remove bucket get approval * fix: add e2e tests * fix: add enum strategy into req and fix e2e tests * fix: add hardfork logic and remove delete vgf index * fix: add hardfork logic and remove delete vgf index * fix: add hardfork logic and remove delete vgf index * fix: add hardfork logic and remove delete vgf index * fix: UT * fix: delete and set GVGFamilyStatistics after hard fork * fix: strategy enum * fix: strategy enum * fix: prepare for Serengeti hardfork * fix: prepare for Serengeti hardfork * fix: go imports format * fix: go imports format * fix: rename function and change error description
- Loading branch information
1 parent
a6c913a
commit 6067133
Showing
20 changed files
with
1,969 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
syntax = "proto3"; | ||
package greenfield.virtualgroup; | ||
|
||
import "gogoproto/gogo.proto"; | ||
|
||
option go_package = "github.com/bnb-chain/greenfield/x/virtualgroup/types"; | ||
|
||
// PickVGFStrategy represents the method for selecting the best global virtual group family based on the strategy | ||
enum PickVGFStrategy { | ||
option (gogoproto.goproto_enum_prefix) = false; | ||
|
||
Strategy_Maximize_Free_Store_Size = 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.