Skip to content

Commit

Permalink
Merge branch 'implement-acp-77-increase-balance-tx' into implement-ac…
Browse files Browse the repository at this point in the history
…p-77-disable-subnet-validator-tx
  • Loading branch information
StephenButtolph authored Oct 7, 2024
2 parents 08e04e7 + 8ef0511 commit 5dcea34
Show file tree
Hide file tree
Showing 4 changed files with 457 additions and 55 deletions.
282 changes: 282 additions & 0 deletions proto/pb/platformvm/platformvm.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions proto/platformvm/platformvm.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
syntax = "proto3";

package platformvm;

option go_package = "github.com/ava-labs/avalanchego/proto/pb/platformvm";

message SubnetValidatorRegistrationJustification {
oneof preimage {
// Validator was added to the Subnet during the ConvertSubnetTx.
SubnetIDIndex convert_subnet_tx_data = 1;
// Validator was registered to the Subnet after the ConvertSubnetTx.
// The SubnetValidator is being removed from the Subnet
bytes register_subnet_validator_message = 2;
}
bytes filter = 3;
}

message SubnetIDIndex {
bytes subnet_id = 1;
uint32 index = 2;
}
Loading

0 comments on commit 5dcea34

Please sign in to comment.