diff --git a/client-sdk/go/modules/consensusaccounts/consensus_accounts.go b/client-sdk/go/modules/consensusaccounts/consensus_accounts.go index 46c672350d..83b64cbcd0 100644 --- a/client-sdk/go/modules/consensusaccounts/consensus_accounts.go +++ b/client-sdk/go/modules/consensusaccounts/consensus_accounts.go @@ -11,6 +11,13 @@ import ( "github.com/oasisprotocol/oasis-sdk/client-sdk/go/types" ) +var ( + // PendingWithdrawalAddress is the address of the internal pending withdrawal account in the consensus_accounts module. + PendingWithdrawalAddress = types.NewAddressForModule("consensus_accounts", []byte("pending-withdrawal")) + // PendingDelegationAddress is the address of the internal pending delegation account in the consensus_accounts module. + PendingDelegationAddress = types.NewAddressForModule("consensus_accounts", []byte("pending-delegation")) +) + var ( // Callable methods. methodDeposit = types.NewMethodName("consensus.Deposit", Deposit{})