forked from nspcc-dev/neo-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core: fix nspcc-dev#2845 system fee refund attribute
- Loading branch information
ZhangTao1596
committed
Feb 9, 2023
1 parent
1d6e48e
commit 18b7900
Showing
8 changed files
with
118 additions
and
28 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
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,20 @@ | ||
package transaction | ||
|
||
import ( | ||
"github.com/nspcc-dev/neo-go/pkg/io" | ||
) | ||
|
||
// Conflicts represents attribute for refund gas transaction. | ||
type RefundableSystemFee struct { | ||
} | ||
|
||
// DecodeBinary implements the io.Serializable interface. | ||
func (c *RefundableSystemFee) DecodeBinary(br *io.BinReader) { | ||
} | ||
|
||
// EncodeBinary implements the io.Serializable interface. | ||
func (c *RefundableSystemFee) EncodeBinary(w *io.BinWriter) { | ||
} | ||
|
||
func (c *RefundableSystemFee) toJSONMap(m map[string]interface{}) { | ||
} |
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