From 1e7d73538949bfec7fdbcae0bcc76fee775df914 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Thu, 23 Jun 2022 18:35:03 -0300 Subject: [PATCH] Clarify PaymentSplitter shares are static (cherry picked from commit 4bf9ab41f804a5e696294b137d6a0a6c23283baa) --- contracts/finance/PaymentSplitter.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/finance/PaymentSplitter.sol b/contracts/finance/PaymentSplitter.sol index 3ad5874dc..72cb59d5f 100644 --- a/contracts/finance/PaymentSplitter.sol +++ b/contracts/finance/PaymentSplitter.sol @@ -14,7 +14,8 @@ import "../utils/Context.sol"; * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim - * an amount proportional to the percentage of total shares they were assigned. + * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the + * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}