-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Remove the use of sdk LegacyMsg (#93)
* test change * Add command to build plugin for debugging * fix: msgV2Signers * fix * update: get signer with codec * CHANGELOG * fix: error handling --------- Co-authored-by: Lucas Francisco Lopez <[email protected]>
- Loading branch information
1 parent
5cfd4f4
commit f253ec2
Showing
5 changed files
with
62 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
#!/usr/bin/make -f | ||
|
||
plugin: | ||
go build -buildmode=plugin -o main.so main.go | ||
go build -buildmode=plugin -o main.so main.go | ||
|
||
plugin-debug: | ||
go build -buildmode=plugin -gcflags="all=-N -l" -o main.so main.go |