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
Jan 31, 2023
1 parent
b56dff2
commit 69b25d2
Showing
6 changed files
with
102 additions
and
10 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,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{}) { | ||
} |