Skip to content

Commit

Permalink
chore: In Amino, use ToLowerSnakeCase for Protobuf field names (#1213)
Browse files Browse the repository at this point in the history
  • Loading branch information
jefft0 authored Nov 23, 2023
1 parent 81be5ac commit 5aa8676
Show file tree
Hide file tree
Showing 24 changed files with 2,059 additions and 1,699 deletions.
18 changes: 9 additions & 9 deletions gno.land/pkg/sdk/vm/vm.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ import "github.com/gnolang/gno/tm2/pkg/std/std.proto";

// messages
message m_call {
string Caller = 1;
string Send = 2;
string PkgPath = 3;
string Func = 4;
repeated string Args = 5;
string caller = 1;
string send = 2;
string pkg_path = 3;
string func = 4;
repeated string args = 5;
}

message m_addpkg {
string Creator = 1;
std.MemPackage Package = 2;
string Deposit = 3;
string creator = 1;
std.MemPackage package = 2;
string deposit = 3;
}

message InvalidPkgPathError {
Expand All @@ -28,4 +28,4 @@ message InvalidStmtError {
}

message InvalidExprError {
}
}
Loading

0 comments on commit 5aa8676

Please sign in to comment.