This repository has been archived by the owner on Oct 27, 2024. It is now read-only.
forked from raiden-network/raiden-contracts
-
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.
Use ABI V2 to shorten settle arg list
This allows us to add additional arguments for hash salts and signatures that allow settling on behalf of other users. I kept compatibility with the existing signature and introduced a new settle function using structs. Is this a good idea? Also a better name than `settleChannel2` would be nice. Closes raiden-network#1129
- Loading branch information
Showing
4 changed files
with
413 additions
and
50 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
1 change: 1 addition & 0 deletions
1
raiden_contracts/data/source/test/TokenNetworkInternalsTest.sol
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,5 @@ | ||
pragma solidity 0.6.4; | ||
pragma experimental ABIEncoderV2; | ||
|
||
import "raiden/TokenNetwork.sol"; | ||
|
||
|
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