Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

feat: implement fip-0029, support beneficiary #1571

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b35e297
implement fip-0028
hunjixin Jan 25, 2022
1d33e1d
Use ChangeBeneficiary according to the FIP draft
steven004 Jan 28, 2022
68de6aa
Terms change & withdraw method modification
steven004 Jan 28, 2022
f537bae
Merge pull request #2 from steven004/feat/fip-0028
hunjixin Jan 28, 2022
fe16f40
Wording rephrase & ChangeBeneficiary modification
steven004 Jan 28, 2022
420d0e3
Fix a sequence.
steven004 Jan 28, 2022
bef4906
fix withdraw/not save quota
hunjixin Jan 28, 2022
91f4ff4
Merge pull request #3 from steven004/feat/fip-0028
hunjixin Jan 28, 2022
c8aeb20
fix unit test
hunjixin Jan 28, 2022
8cdd7a3
Merge pull request #1 from ipfs-force-community/feat/fip-0028
hunjixin Jan 28, 2022
d002ef0
gen new determinism
hunjixin Jan 28, 2022
73ae096
Merge pull request #4 from ipfs-force-community/fix/gen_determinism
hunjixin Jan 28, 2022
239156d
fix comment
hunjixin Feb 8, 2022
6b88645
fix unit test
hunjixin Feb 8, 2022
db28801
fix unit test
hunjixin Feb 8, 2022
40200a2
change proposal/approve logic
hunjixin Feb 8, 2022
9e050ae
rename beneficiaryinfo to beneficiaryterm
hunjixin Feb 8, 2022
e3e5da6
change beneficiary address to new owner and clear any pending proposal
hunjixin Feb 8, 2022
3445a56
Some fix of beneficiary change
steven004 Feb 10, 2022
30529e3
Merge pull request #6 from steven004/fix/comment
hunjixin Feb 10, 2022
17c4804
Merge pull request #5 from ipfs-force-community/fix/comment
hunjixin Feb 10, 2022
5d83970
add more test &fix typo
hunjixin Feb 10, 2022
2218b89
Merge pull request #7 from ipfs-force-community/feat/more_unit_test
hunjixin Feb 10, 2022
8c5c76a
fix unit test
hunjixin Feb 10, 2022
406f60f
Merge pull request #8 from ipfs-force-community/fix/unit_test
hunjixin Feb 10, 2022
7313dec
add more unit test
hunjixin Feb 16, 2022
bc0e99a
revert
hunjixin Feb 16, 2022
db5228e
revert compare with zero
hunjixin Feb 16, 2022
0dca505
remove unused test
hunjixin Feb 16, 2022
5944104
check amountwithdrawn > 0 instead >=
hunjixin Feb 16, 2022
eebed21
add checkPendingBeneficiaryTerm to provent nil pointer
hunjixin Feb 18, 2022
6196fe4
Merge pull request #10 from ipfs-force-community/fix/commnet2
hunjixin Feb 18, 2022
5a3bc99
fix withdraw unit test
hunjixin Feb 21, 2022
c67938a
Merge pull request #11 from hunjixin/fix/withdraw_test
hunjixin Feb 21, 2022
c526a4f
fix go mod
hunjixin Feb 21, 2022
7b93999
Merge pull request #12 from ipfs-force-community/fix/go_mod
hunjixin Feb 21, 2022
933b567
add method GetBeneficiary (#13)
hunjixin Mar 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion actors/builtin/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ var MethodsMiner = struct {
PreCommitSectorBatch abi.MethodNum
ProveCommitAggregate abi.MethodNum
ProveReplicaUpdates abi.MethodNum
}{MethodConstructor, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27}
ChangeBeneficiary abi.MethodNum
GetBeneficiary abi.MethodNum
}{MethodConstructor, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29}

var MethodsVerifiedRegistry = struct {
Constructor abi.MethodNum
Expand Down
Loading